:root {
  --bg: #f6f2eb;
  --paper: #fffdf8;
  --ink: #17130f;
  --muted: #6d665e;
  --line: #ddd5ca;
  --orange: #df6a3d;
  --orange-dark: #c8522e;
  --green: #d7f3df;
  --green-ink: #176f38;
  --cyan: #d7f5f2;
  --cyan-ink: #176e70;
  --red: #ffe3e2;
  --red-ink: #be3d44;
  --dark: #17120d;
  --dark-muted: #a99c90;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input {
  font: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 0 56px;
  background: rgba(246, 242, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-weight: 800;
}

.brand-logo {
  width: 160px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

.site-header > .button {
  justify-self: end;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(223, 106, 61, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.3) 44%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button span,
.button {
  isolation: isolate;
}

.button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(223, 106, 61, 0.34);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

[id],
.before-after,
.features,
.app-preview,
.trust,
.final-cta {
  scroll-margin-top: 104px;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(64px, 6.25vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-line {
  display: inline-block;
}

.hero-line-platforms,
.hero-line-accent {
  white-space: nowrap;
}

.hero-line-accent {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 580px;
  margin: 34px 0 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 650;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(220px, 320px) auto;
  gap: 10px;
  align-items: start;
  max-width: 610px;
}

.lead-form input[type="email"] {
  height: 58px;
  width: 100%;
  border: 1px solid #d6cec3;
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  color: var(--ink);
  outline: none;
}

.lead-form input[type="email"]:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(223, 106, 61, 0.12);
}

.compact {
  grid-template-columns: minmax(220px, 1fr) auto;
  width: min(100%, 560px);
}

.consent,
.form-status {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.form-status:not(:empty) {
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(223, 106, 61, 0.28);
  border-radius: 8px;
  background: rgba(223, 106, 61, 0.08);
  animation: statusPop 320ms ease both;
}

.hp-field {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.phone-wrap {
  display: flex;
  min-width: 0;
  justify-content: flex-end;
}

.phone {
  transform: rotate(-0.8deg);
  width: min(100%, 300px);
  padding: 14px 16px 18px;
  border: 10px solid #15100d;
  border-radius: 44px;
  background: #fbf6ec;
  box-shadow: 0 32px 90px rgba(44, 35, 27, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.phone:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 42px 100px rgba(44, 35, 27, 0.24);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.phone-top span:last-child {
  text-align: right;
}

.speaker {
  width: 74px;
  height: 16px;
  border-radius: 999px;
  background: #15100d;
}

.phone-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 10px 0 8px;
  font-size: 10px;
  font-weight: 900;
}

.mini-mark {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(145deg, #f08249, #c8522e);
  box-shadow: -4px 4px 0 #f6d4c2, -8px 8px 0 #f2e5d7;
}

.phone img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  border-radius: 12px;
}

.analysis {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: #167d42;
  font-size: 10px;
  font-weight: 850;
}

.analysis span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bd273;
}

.analysis strong {
  margin-left: auto;
  color: var(--muted);
}

.phone h2 {
  margin: 10px 0 6px;
  font-size: 15px;
  line-height: 1.18;
}

.phone p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 650;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 27px;
  font-weight: 900;
}

.price small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.chips span {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 850;
}

.chips span:nth-child(1) {
  background: var(--green);
  color: var(--green-ink);
}

.chips span:nth-child(2) {
  background: var(--cyan);
  color: var(--cyan-ink);
}

.chips span:nth-child(3) {
  background: var(--red);
  color: var(--red-ink);
}

.phone-button {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 12px;
  font-size: 12px;
}

.platform-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  min-height: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}

.platform-strip strong {
  color: var(--ink);
  text-transform: none;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-title h2,
.trust h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.legal-hero h1 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-content article {
  overflow-wrap: anywhere;
}

.legal-content a {
  word-break: break-word;
}

.section-title p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-grid article {
  position: relative;
  overflow: hidden;
  border-top: 2px solid #8f877e;
  padding-top: 28px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.step-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 260ms ease;
}

.step-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 106, 61, 0.24);
}

.step-grid article:hover::before {
  width: 100%;
}

.step-grid article:hover h3 {
  color: var(--orange-dark);
}

.step-grid span,
.feature-grid span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.step-grid h3,
.feature-grid h3,
.listing-card h3,
.faq summary {
  margin: 14px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.step-grid p,
.feature-grid p,
.listing-card p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.before-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 132px 0.92fr;
  align-items: center;
  gap: 34px;
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.photo-panel figcaption {
  margin-top: 14px;
  color: #938a80;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.ai-flow {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 132px;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 850;
}

.flow-line {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(223, 106, 61, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(223, 106, 61, 0.16), transparent 55%),
    var(--paper);
  box-shadow: 0 22px 52px rgba(44, 35, 27, 0.12);
}

.flow-line::before,
.flow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

.flow-line::before {
  right: calc(100% + 8px);
}

.flow-line::after {
  left: calc(100% + 8px);
  transform: rotate(180deg);
}

.flow-line span {
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  border: 3px solid transparent;
  border-top-color: var(--orange);
  border-right-color: rgba(223, 106, 61, 0.55);
  animation: aiSpin 1.7s linear infinite;
}

.flow-line span::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(223, 106, 61, 0.14);
}

.flow-steps {
  display: grid;
  gap: 5px;
}

.flow-steps strong {
  color: var(--orange-dark);
}

.flow-time {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(223, 106, 61, 0.1);
  color: var(--orange-dark);
}

.listing-card {
  padding: 26px;
  border: 1px solid #d7cec1;
  border-radius: 10px;
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.generated-card {
  box-shadow: 0 22px 70px rgba(44, 35, 27, 0.08);
}

.generated-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(44, 35, 27, 0.14);
}

.listing-head {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.listing-head img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.listing-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.listing-card .price {
  font-size: 26px;
}

.listing-card > p {
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #d8d0c5;
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.56);
  overflow: hidden;
}

.feature-grid article {
  position: relative;
  min-height: 180px;
  padding: 34px;
  background: transparent;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: auto 28px 24px 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(223, 106, 61, 0));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.feature-grid article:hover {
  z-index: 1;
  background: #fffaf1;
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(44, 35, 27, 0.12);
}

.feature-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.feature-grid article:hover h3 {
  color: var(--orange-dark);
}

.feature-grid article:nth-child(odd) {
  border-right: 1px solid #d8d0c5;
}

.feature-grid article:nth-child(-n + 2) {
  border-bottom: 1px solid #d8d0c5;
}

.app-preview {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.52), rgba(246, 242, 235, 0)),
    var(--bg);
}

.app-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 46px;
}

.app-preview h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
}

.app-preview-head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.app-showcase {
  position: relative;
  min-height: 690px;
}

.app-shot {
  position: relative;
  margin: 0;
  border: 1px solid rgba(23, 19, 15, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(44, 35, 27, 0.14);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.app-shot:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 110px rgba(44, 35, 27, 0.18);
}

.app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-shot-main {
  width: min(84%, 880px);
  aspect-ratio: 1030 / 620;
}

.app-shot-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(50%, 520px);
  aspect-ratio: 820 / 760;
  transform: rotate(1.4deg);
}

.app-shot-secondary:hover {
  transform: rotate(0deg) translateY(-8px);
}

.shot-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  padding: 8px 11px;
  border: 1px solid rgba(23, 19, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.app-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.app-facts span {
  padding: 10px 13px;
  border: 1px solid rgba(223, 106, 61, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.app-preview.is-visible .app-shot-main {
  animation: appShotIn 760ms 110ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.app-preview.is-visible .app-shot-secondary {
  animation: appShotFloat 820ms 260ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.trust {
  background: var(--dark);
  color: #fff;
}

.trust-inner {
  text-align: center;
}

.trust p {
  max-width: 760px;
  margin: 24px auto 54px;
  color: var(--dark-muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid div {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 30px 24px 0;
  transition: transform 220ms ease, background 220ms ease;
}

.trust-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(223, 106, 61, 0.18), transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.trust-grid div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.035);
}

.trust-grid div:hover::before {
  opacity: 1;
}

.trust-grid div > * {
  position: relative;
}

.trust-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid span {
  color: #7c7168;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid strong {
  font-size: 18px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--orange);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  max-width: 760px;
  padding-right: 48px;
}

.final-cta {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 128px 0;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  align-items: center;
  gap: 56px;
  padding: 54px;
  border: 1px solid rgba(223, 106, 61, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 16%, rgba(223, 106, 61, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf1, #f4ede2);
  box-shadow: 0 30px 90px rgba(44, 35, 27, 0.13);
  overflow: hidden;
}

.cta-grid::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -82px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 34px solid rgba(223, 106, 61, 0.08);
}

.cta-grid > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 620px;
  font-size: clamp(48px, 5.8vw, 78px);
}

.final-cta p {
  max-width: 560px;
  font-size: 20px;
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cta-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(223, 106, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.final-cta .lead-form {
  padding: 20px;
  border: 1px solid rgba(23, 19, 15, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(44, 35, 27, 0.1);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eee8df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 48px;
  padding: 58px 0;
}

.footer-grid-simple {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--ink);
}

.footer-label {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 750;
}

.legal-header {
  position: static;
}

.legal-hero {
  padding: 82px 0 42px;
}

.legal-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.legal-content {
  padding: 24px 0 96px;
}

.legal-content article {
  max-width: 880px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 26px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 620;
}

.legal-content a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.before-after.is-visible .generated-card {
  animation: cardArrive 780ms 240ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.before-after.is-visible .ai-flow {
  animation: flowPop 520ms 120ms ease both;
}

@keyframes aiSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cardArrive {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes flowPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes statusPop {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appShotIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes appShotFloat {
  from {
    opacity: 0;
    transform: translate(28px, 30px) rotate(3deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(1.4deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .before-grid,
  .app-preview-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .phone-wrap {
    justify-content: flex-start;
  }

  .before-grid {
    gap: 24px;
  }

  .ai-flow {
    margin: -6px auto;
  }

  .flow-line::before,
  .flow-line::after {
    display: none;
  }

  .feature-grid,
  .step-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    display: grid;
    gap: 20px;
    min-height: auto;
  }

  .app-shot-main,
  .app-shot-secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .app-shot-secondary:hover {
    transform: none;
  }

  .feature-grid article,
  .feature-grid article:nth-child(odd),
  .feature-grid article:nth-child(-n + 2),
  .trust-grid div + div {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:hover,
  .trust-grid div:hover,
  .step-grid article:hover {
    transform: none;
  }

  .trust-grid div {
    padding: 24px;
  }

  .platform-strip {
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 18px 24px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
    padding: 0 14px;
  }

  .button-small {
    min-height: 42px;
    padding: 0 11px;
    font-size: 11px;
  }

  .brand-logo {
    width: 126px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .final-cta {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 47px;
    line-height: 0.98;
  }

  .hero-line-platforms {
    font-size: 0.78em;
  }

  .lead-form,
  .compact {
    grid-template-columns: 1fr;
  }

  .lead-form .button {
    width: 100%;
  }

  .phone {
    width: min(100%, 330px);
    transform: none;
  }

  .section-title h2,
  .app-preview h2,
  .trust h2,
  .final-cta h2,
  .legal-hero h1 {
    font-size: 38px;
  }

  .before-after .section-title h2 {
    font-size: 35px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .step-grid h3,
  .feature-grid h3,
  .faq summary {
    font-size: 22px;
  }

  .feature-grid article,
  .listing-card,
  .legal-content article {
    padding: 24px;
  }

  .cta-grid {
    padding: 28px 20px;
    border-radius: 10px;
  }

  .listing-head {
    grid-template-columns: 70px 1fr;
  }

  .app-preview-head {
    gap: 20px;
    margin-bottom: 30px;
  }

  .app-preview-head p {
    font-size: 16px;
  }

  .app-shot {
    border-radius: 10px;
  }

  .shot-label {
    left: 12px;
    top: 12px;
    font-size: 11px;
  }
}

@media (max-width: 370px) {
  .site-header {
    gap: 8px;
    padding: 0 10px;
  }

  .brand-logo {
    width: 116px;
  }

  .button-small {
    padding: 0 9px;
    font-size: 10.5px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-line-platforms {
    font-size: 0.76em;
  }

  .before-after .section-title h2 {
    font-size: 33px;
  }
}
