*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #000;
  background: #ff6a00;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
}

input {
  font: inherit;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 24px rgba(15, 18, 24, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.nav-bar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-bar__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-bar__logo {
  display: flex;
  align-items: center;
}

.nav-bar__logo img {
  height: clamp(20px, 2vw, 24px);
  width: auto;
  display: block;
  filter: invert(1);
}

.nav-bar__cta {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.04em;
  color: #fff;
  background: #0f1218;
  padding: 0 22px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.nav-bar__cta:hover {
  background: #1f2937;
  box-shadow: 0 4px 12px rgba(15, 18, 24, 0.18);
}

.nav-bar__cta:active {
  transform: translateY(1px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 48px);
  max-width: none;
  margin: 0;
  padding-top: clamp(32px, 5vw, 96px);
  padding-right: 0;
  padding-bottom: 0;
  padding-left: max(clamp(24px, 6vw, 120px), calc((100vw - 1600px) / 2 + 120px));
  overflow: hidden;
  background-image: url("/assets/background.png");
  background-size: cover;
  background-position: center;
}

.landing__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding-bottom: clamp(32px, 5vw, 96px);
}


.landing__logo {
  display: inline-block;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.landing__logo img {
  height: clamp(32px, 3.5vw, 48px);
  width: auto;
}

.landing__eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f1218;
  margin: 0 0 clamp(14px, 1.4vw, 20px);
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 18, 24, 0.12);
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing__headline {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 61px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 clamp(16px, 2vw, 24px);
  text-shadow: 0 1px 0 rgba(15, 18, 24, 0.06);
}

.landing__subhead {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: #0f1218;
  margin: 0 0 clamp(32px, 4vw, 56px);
  max-width: 560px;
}

.waitlist__heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.2;
  color: #0f1218;
  margin: 0 0 clamp(12px, 1.4vw, 18px);
}

.waitlist__form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 3px;
  padding: 8px;
  max-width: 560px;
  border: 1px solid rgba(15, 18, 24, 0.08);
  box-shadow: 0 12px 32px rgba(15, 18, 24, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist__form::before,
.waitlist__form::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #0f1218;
  pointer-events: none;
}

.waitlist__form::before {
  top: -1.5px;
  left: -1.5px;
  border-right: none;
  border-bottom: none;
}

.waitlist__form::after {
  bottom: -1.5px;
  right: -1.5px;
  border-left: none;
  border-top: none;
}

.waitlist__form:focus-within {
  border-color: #ff6a00;
  box-shadow: 0 12px 32px rgba(15, 18, 24, 0.16), 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.waitlist__field {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.waitlist__field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 18px);
  color: #0f1218;
}

.waitlist__field input::placeholder {
  color: rgba(15, 18, 24, 0.4);
}

.waitlist__submit {
  background: #0f1218;
  color: #fff;
  border-radius: 3px;
  padding: 0 clamp(22px, 2.2vw, 32px);
  min-height: 52px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.waitlist__submit:hover:not(:disabled) {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 18, 24, 0.22);
}

.waitlist__submit:active:not(:disabled) {
  transform: translateY(0);
}

.waitlist__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.waitlist__submit[data-state="success"] {
  background: #ff8a2a;
  color: #0f1218;
}

.waitlist__submit-label {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.04em;
}

.waitlist__disclaimer {
  margin: 14px 0 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.5;
  color: rgba(15, 18, 24, 0.62);
  min-height: 1.5em;
  transition: color 0.2s ease;
}

.waitlist__disclaimer[data-state="success"] {
  color: #0f1218;
  font-weight: 700;
}

.waitlist__disclaimer[data-state="error"] {
  color: #8a1308;
  font-weight: 600;
}

.landing__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
}

.landing__visual img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(2px);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.2));
}

@media (max-width: 960px) {
  .landing {
    grid-template-columns: minmax(0, 1fr);
    padding-top: clamp(72px, 14vw, 96px);
    padding-right: clamp(20px, 6vw, 48px);
    padding-bottom: 0;
    padding-left: clamp(20px, 6vw, 48px);
    gap: 24px;
    overflow: hidden;
  }

  .landing__content {
    order: 1;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    padding-bottom: 0;
  }

  .landing__logo {
    margin-bottom: clamp(20px, 5vw, 32px);
  }

  .landing__visual {
    order: 2;
    justify-content: center;
  }

  .landing__visual img {
    max-width: 480px;
    object-position: center bottom;
  }

  .landing__headline {
    font-size: clamp(31px, 7.6vw, 48px);
    line-height: 1.02;
  }

  .landing__subhead {
    font-size: clamp(15px, 4vw, 18px);
  }
}

@media (max-width: 560px) {
  .waitlist__form {
    flex-direction: column;
    padding: 10px;
    gap: 8px;
  }

  .waitlist__field input {
    padding: 16px 14px;
    font-size: 16px;
  }

  .waitlist__submit {
    width: 100%;
    min-height: 56px;
  }
}

.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 clamp(14px, 1.4vw, 20px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.section-heading {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 900px;
}

.features {
  background: #0c1420;
  color: #e6ecf4;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 22% -10%, rgba(255, 138, 42, 0.14), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(255, 106, 0, 0.08), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}

.features__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 128px) clamp(24px, 6vw, 120px);
}

.features__header {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
}

.features .section-eyebrow {
  color: #ff8a2a;
}

.features .section-heading {
  color: #fff;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 48px);
}

.feature {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 2.4vw, 36px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 100%), #0c1420;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.feature::before,
.feature::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  pointer-events: none;
}

.feature::before {
  top: -1.5px;
  left: -1.5px;
  border-right: none;
  border-bottom: none;
}

.feature::after {
  bottom: -1.5px;
  right: -1.5px;
  border-left: none;
  border-top: none;
}

.feature__icon {
  color: #ff8a2a;
  margin-bottom: clamp(20px, 2vw, 32px);
}

.feature__icon svg {
  width: clamp(64px, 6vw, 88px);
  height: auto;
  display: block;
}

.feature__headline {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 12px;
}

.feature__body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: rgba(230, 236, 244, 0.72);
  margin: 0;
}

.workflow {
  background: #f6f1e6;
  color: #1a1a1a;
}

.workflow__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 128px) clamp(24px, 6vw, 120px);
}

.workflow__header {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 820px;
}

.workflow .section-eyebrow {
  color: #ff6a00;
}

.workflow .section-heading {
  color: #1a1a1a;
}

.workflow__bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.bento {
  background: #fff;
  border-radius: 3px;
  padding: clamp(28px, 3vw, 48px) clamp(24px, 2.5vw, 40px) 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(15, 18, 24, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.bento__phone-viewport {
  border-radius: inherit;
  overflow: hidden;
}

.bento::before,
.bento::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #0f1218;
  pointer-events: none;
  z-index: 2;
}

.bento::before {
  top: -1.5px;
  left: -1.5px;
  border-right: none;
  border-bottom: none;
}

.bento::after {
  bottom: -1.5px;
  right: -1.5px;
  border-left: none;
  border-top: none;
}

.bento:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 18, 24, 0.18);
}

.bento--a { background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%); }
.bento--b { background: linear-gradient(180deg, #ffffff 0%, #fef3e2 100%); }
.bento--c { background: linear-gradient(180deg, #ffffff 0%, #ffedd5 100%); }

.bento__phone {
  background: #0f0f12;
  border-radius: 28px;
  border: 3px solid #000;
  padding: 10px;
  position: relative;
  box-shadow: 0 20px 40px rgba(15, 15, 18, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.bento__phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 6px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

.bento__phone-viewport {
  width: clamp(180px, 16vw, 230px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: auto;
  order: 2;
}

.bento__phone {
  width: 100%;
  aspect-ratio: 10 / 20.5;
  flex-shrink: 0;
  margin-bottom: 0;
}

.bento__phone-screen {
  width: 100%;
  height: 100%;
  background: #0f1218;
  color: #fff;
  border-radius: 20px;
  padding: 22px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 7px;
  line-height: 1.25;
}

.bento__phone-screen--light {
  background: #fafafa;
  color: #0f1218;
}

.bento__phone-screen--map {
  background:
    linear-gradient(180deg, rgba(15, 18, 24, 0.15) 0%, rgba(15, 18, 24, 0.75) 45%, #0f1218 60%),
    repeating-linear-gradient(45deg, #2a2e37 0 6px, #1e222a 6px 12px);
  background-blend-mode: normal;
}

.wf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.wf-back-btn {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(15, 18, 24, 0.25);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}

.wf-back-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-left: 1px solid rgba(15, 18, 24, 0.75);
  border-bottom: 1px solid rgba(15, 18, 24, 0.75);
  transform: rotate(45deg);
  top: 2px;
  left: 3px;
}

.wf-back-btn--dark {
  border-color: rgba(255, 255, 255, 0.18);
}

.wf-back-btn--dark::before {
  border-color: rgba(255, 255, 255, 0.7);
}

.wf-step-label {
  font-weight: 700;
  font-size: 6px;
  letter-spacing: 0.08em;
  color: rgba(15, 18, 24, 0.7);
  flex: 1;
  padding-left: 4px;
}

.wf-edit-btn {
  font-weight: 600;
  font-size: 6px;
  color: #ff8a2a;
  border: 1px solid #ff8a2a;
  padding: 3px 6px;
  border-radius: 3px;
  background: rgba(255, 138, 42, 0.08);
}

.wf-h {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.1;
  margin: 6px 0 2px;
  color: #0f1218;
}

.wf-h--dark {
  color: #fff;
}

.wf-sub {
  font-size: 6px;
  color: rgba(15, 18, 24, 0.55);
  margin: 0 0 4px;
}

.wf-group {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 5px;
  border: 1px solid rgba(15, 18, 24, 0.12);
  border-radius: 3px;
  background: #fff;
}

.wf-drag {
  width: 6px;
  height: 8px;
  flex-shrink: 0;
  background:
    linear-gradient(rgba(15, 18, 24, 0.35) 40%, transparent 40%) 0 0/100% 2px,
    linear-gradient(rgba(15, 18, 24, 0.35) 40%, transparent 40%) 0 4px/100% 2px,
    linear-gradient(rgba(15, 18, 24, 0.35) 40%, transparent 40%) 0 8px/100% 2px;
}

.wf-check {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(15, 18, 24, 0.28);
  border-radius: 2px;
  flex-shrink: 0;
  background: #fff;
  position: relative;
}

.wf-check--on {
  background: #ff8a2a;
  border-color: #ff8a2a;
}

.wf-check--on::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 3px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

.wf-group__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.wf-group__name {
  font-weight: 700;
  font-size: 7px;
  color: #0f1218;
}

.wf-group__count {
  font-size: 5.5px;
  color: rgba(15, 18, 24, 0.5);
}

.wf-chev {
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(15, 18, 24, 0.5);
  border-bottom: 1px solid rgba(15, 18, 24, 0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.wf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 18, 24, 0.08);
  border-top: none;
  border-radius: 0 0 3px 3px;
  background: #fff;
  overflow: hidden;
}

.wf-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 5px;
  border-top: 1px solid rgba(15, 18, 24, 0.06);
}

.wf-li {
  font-size: 6.5px;
  color: #0f1218;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wf-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding: 10px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  z-index: 2;
}

.wf-map-back {
  width: 14px;
  height: 14px;
  background: #ff8a2a;
  border-radius: 3px;
  position: relative;
}

.wf-map-back::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  top: 3px;
  left: 4px;
}

.wf-map-chip {
  font-size: 6px;
  font-weight: 700;
  color: #0f1218;
  background: #c8f5d3;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: auto;
}

.wf-map-menu {
  width: 14px;
  height: 14px;
  background: #ff8a2a;
  border-radius: 3px;
  position: relative;
}

.wf-map-menu::before {
  content: "⋯";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
  line-height: 1;
}

.wf-project {
  margin-top: 38px;
  padding: 0 2px;
}

.wf-project__name {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  margin: 0 0 1px;
}

.wf-project__meta {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 5px;
}

.wf-tabs {
  display: flex;
  gap: 8px;
  padding: 0 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 5px;
}

.wf-tab {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  position: relative;
}

.wf-tab--active {
  color: #ff8a2a;
}

.wf-tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.5px;
  background: #ff8a2a;
}

.wf-est-card {
  background: #fff;
  border-radius: 3px;
  padding: 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #0f1218;
}

.wf-est-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(15, 18, 24, 0.08);
  margin-bottom: 2px;
}

.wf-est-card__title {
  font-weight: 700;
  font-size: 6.5px;
}

.wf-share-btn {
  font-weight: 700;
  font-size: 5.5px;
  letter-spacing: 0.05em;
  color: #fff;
  background: #ff8a2a;
  padding: 2px 5px;
  border-radius: 2px;
}

.wf-est-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-size: 6px;
  color: rgba(15, 18, 24, 0.7);
}

.wf-est-row span:last-child {
  font-weight: 600;
  color: #0f1218;
}

.wf-est-row--total {
  padding-top: 3px;
  border-top: 1px solid rgba(15, 18, 24, 0.12);
  font-weight: 700;
  font-size: 7px;
}

.wf-accent {
  color: #ff8a2a !important;
  font-weight: 700 !important;
}

.wf-top--dark {
  padding-bottom: 5px;
}

.wf-full-btn {
  font-weight: 700;
  font-size: 6px;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 6px;
  border-radius: 3px;
}

.wf-menu-btn {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  position: relative;
}

.wf-menu-btn::before {
  content: "⋯";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
  line-height: 1;
}

.wf-eyebrow {
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 1px;
}

.wf-note {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 6px 6px;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.wf-pdf {
  background: #fff;
  color: #0f1218;
  border-radius: 3px;
  padding: 6px 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  margin-top: 2px;
  min-height: 0;
}

.wf-pdf__head {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 3px;
}

.wf-b-logo {
  width: 13px;
  height: 13px;
  background: #ff8a2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.wf-pdf__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.wf-pdf__title {
  font-weight: 700;
  font-size: 7px;
}

.wf-pdf__sub {
  font-size: 5.5px;
  color: rgba(15, 18, 24, 0.55);
}

.wf-pdf__divider {
  height: 1px;
  background: #0f1218;
}

.wf-pdf__section {
  font-weight: 700;
  font-size: 5.5px;
  letter-spacing: 0.08em;
  color: #0f1218;
  margin-top: 2px;
}

.wf-pdf__row {
  display: flex;
  justify-content: space-between;
  font-size: 5.5px;
  color: rgba(15, 18, 24, 0.65);
  gap: 4px;
}

.wf-pdf__row span:last-child {
  font-weight: 600;
  color: #0f1218;
}

.wf-continue {
  margin-top: auto;
  padding: 7px 8px;
  background: #ff8a2a;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.wf-bd-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 2px;
}

.wf-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 6px;
  color: rgba(255, 255, 255, 0.6);
}

.wf-bd-row span:last-child {
  font-weight: 600;
  color: #fff;
}

.wf-bd-row--head {
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 6px;
  border-radius: 3px;
  border-bottom: none;
  margin-bottom: 2px;
}

.wf-export-btn {
  margin-top: auto;
  padding: 7px 8px;
  background: #ff8a2a;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.bento__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  order: 1;
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

.bento__step {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #ff6a00;
  margin-bottom: 10px;
}

.bento__title {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.bento__body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

@media (max-width: 1100px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workflow__bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workflow__bento .bento:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .workflow__bento {
    grid-template-columns: minmax(0, 1fr);
  }
  .workflow__bento .bento:last-child {
    grid-column: auto;
    max-width: none;
  }
}

.site-footer {
  background: #ff6a00;
  background-image: url("/assets/background.png");
  background-size: cover;
  background-position: center;
  color: #0f1218;
  position: relative;
  overflow: hidden;
}

.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 6vw, 120px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
}

.site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 80px);
  width: 100%;
}

.site-footer__copy-block {
  max-width: 620px;
}

.site-footer__form-block {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

@media (max-width: 900px) {
  .site-footer__cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .site-footer__form-block {
    justify-self: stretch;
    max-width: none;
  }
}

.site-footer__eyebrow {
  color: #0f1218;
}

.site-footer__headline {
  font-family: "Lexend", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 clamp(16px, 2vw, 24px);
}

.site-footer__subhead {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: #0f1218;
  margin: 0 0 clamp(24px, 3vw, 40px);
  max-width: 560px;
}

.site-footer__form {
  max-width: 560px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.site-footer__logo img {
  height: clamp(22px, 2.2vw, 28px);
  width: auto;
  display: block;
}

.site-footer__credit {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgba(15, 18, 24, 0.7);
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 720px) {
  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(15, 18, 24, 0.92);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(15, 18, 24, 0.18);
    pointer-events: none;
  }

  .mobile-cta--visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-family: "Lexend", "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .mobile-cta__btn:active {
    background: #ff8a2a;
    transform: translateY(1px);
  }

  .mobile-cta__btn::after {
    content: "→";
    font-size: 18px;
    font-weight: 700;
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-bar,
  .mobile-cta,
  .feature,
  .bento {
    transition: none !important;
  }
}

.site-footer__credit {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
