:root {
  --orange: #f57c00;
  --orange-dark: #db6300;
  --orange-light: #fff4e8;
  --amber: #ffad25;
  --cream: #fffaf2;
  --teal: #0f766e;
  --blue: #2563eb;
  --ink: #17202a;
  --muted: #667085;
  --line: #e9eaec;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --success: #16a36a;
  --warning: #e49211;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(31, 42, 55, 0.12);
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 124, 0, .05), transparent 28rem),
    linear-gradient(180deg, #fffdfa 0%, #ffffff 42%, #f7f9fb 100%);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(245, 124, 0, 0.25);
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-size: 15px;
  letter-spacing: .2px;
}

.brand small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #49515c;
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta {
  padding: 11px 18px;
  color: #fff !important;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(245, 124, 0, 0.25);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 15%, rgba(245, 124, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 52%, #f2f6f8 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(115deg, rgba(255,255,255,.7), transparent 40%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  padding-block: 75px 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  margin: 18px 0 22px;
  max-width: 700px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -3.5px;
  text-shadow: 0 9px 28px rgba(23, 32, 42, .08);
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 34px rgba(245, 124, 0, 0.3);
}

.button-secondary {
  border: 1px solid #dfe2e6;
  background: #fff;
}

.hero-trust {
  display: flex;
  gap: 34px;
  margin-top: 40px;
}

.hero-trust div {
  display: grid;
}

.hero-trust strong {
  font-size: 24px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 13px;
}

.phone-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.phone-shadow {
  position: absolute;
  width: 360px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 124, 0, 0.18), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(15, 118, 110, 0.11), transparent 44%);
  filter: blur(60px);
  animation: pulseGlow 5s ease-in-out infinite;
}

.phone {
  position: relative;
  width: 314px;
  padding: 9px;
  border: 8px solid #1c2127;
  border-radius: 48px;
  background: #1c2127;
  box-shadow: 0 46px 95px rgba(17, 24, 39, 0.28), 0 10px 30px rgba(245, 124, 0, .12);
  transform: rotate(3deg);
  animation: phoneFloat 5.6s ease-in-out infinite;
}

.phone::after {
  position: absolute;
  top: 112px;
  right: -12px;
  width: 5px;
  height: 76px;
  border-radius: 0 4px 4px 0;
  content: "";
  background: #252b31;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  width: 94px;
  height: 25px;
  border-radius: 0 0 16px 16px;
  background: #1c2127;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 590px;
  padding: 38px 17px 16px;
  border-radius: 33px;
  background:
    linear-gradient(180deg, #fff 0%, #f7f8fa 44%, #f1f4f7 100%);
}

.app-topbar {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 9px;
  align-items: center;
}

.app-topbar img {
  width: 35px;
  border-radius: 10px;
}

.app-topbar div {
  display: grid;
  line-height: 1.2;
}

.app-topbar small {
  color: #838b95;
  font-size: 9px;
}

.app-topbar strong {
  font-size: 12px;
}

.bell {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 9px;
  background: #fff0df;
  font-size: 8px;
}

.score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 18px;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffad25, #ea6b05 58%, #c85506);
  box-shadow: 0 16px 35px rgba(245, 124, 0, 0.28);
  animation: cardLift 4.8s ease-in-out infinite;
}

.score-card > div:first-child {
  display: grid;
}

.score-card small {
  opacity: .82;
  font-size: 9px;
}

.score-card strong {
  margin: 2px 0;
  font-size: 31px;
  line-height: 1.2;
}

.score-card span {
  font-size: 8px;
}

.score-ring {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, .34);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ringSpin 8s linear infinite;
}

.score-ring span {
  font-size: 17px;
  font-weight: 800;
}

.mini-title {
  display: flex;
  justify-content: space-between;
  margin: 22px 2px 10px;
  font-size: 10px;
}

.mini-title span {
  color: var(--orange);
  font-weight: 700;
}

.property-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 9px;
  padding: 13px;
  border: 1px solid #eceef1;
  border-radius: 15px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.property-card:hover {
  box-shadow: 0 12px 28px rgba(24, 32, 42, .08);
  transform: translateX(3px);
}

.property-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 11px;
  background: var(--orange-light);
}

.property-card > div:nth-child(2) {
  display: grid;
  line-height: 1.35;
}

.property-card strong {
  font-size: 10px;
}

.property-card small {
  color: #87909b;
  font-size: 8px;
}

.property-card b {
  color: #adb3bb;
  font-size: 20px;
}

.status {
  width: max-content;
  margin-top: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 7px !important;
  font-weight: 750;
}

.status.success {
  color: var(--success);
  background: #e9f8f2;
}

.status.warning {
  color: var(--warning);
  background: #fff5df;
}

.app-bottom-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 12px 4px 2px;
  border-top: 1px solid #e7e9ec;
}

.app-bottom-nav span {
  min-width: 38px;
  display: grid;
  place-items: center;
  color: #a1a7af;
  font-size: 14px;
}

.app-bottom-nav small {
  margin-top: 3px;
  font-size: 6px;
}

.app-bottom-nav .active {
  color: var(--orange);
}

.logo-strip {
  padding: 30px 0;
  border-block: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.logo-strip p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.audience-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-weight: 750;
}

.audience-inline i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.workflow-copy h2,
.download-copy h2 {
  margin: 14px 0 15px;
  font-size: clamp(36px, 4.4vw, 55px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  content: "";
  background: rgba(245, 124, 0, .08);
  transition: transform .3s ease;
}

.feature-card.revealed,
.step.revealed,
.role-grid article.revealed,
.visual-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: rgba(245, 124, 0, .3);
  box-shadow: 0 20px 50px rgba(27, 37, 48, .08);
  transform: translateY(-5px);
}

.feature-card:hover::after {
  transform: scale(1.25);
}

.feature-card.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #ffac24, #ee6b00 62%, #c95405);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #d4d7db;
  font-size: 13px;
  font-weight: 800;
}

.featured .feature-number {
  color: rgba(255, 255, 255, .5);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--orange);
  border-radius: 15px;
  background: var(--orange-light);
  font-size: 22px;
  font-weight: 900;
}

.featured .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.featured p {
  color: rgba(255, 255, 255, .84);
}

.workflow-section {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .06), transparent 34%),
    var(--surface-soft);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.workflow-copy h2 {
  margin-bottom: 35px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 18px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .6s ease, transform .6s ease;
}

.step.active {
  border: 1px solid #f6dcc0;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 32, 42, .06);
}

.step:hover {
  background: #fff;
}

.step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 13px;
  background: var(--orange-light);
  font-weight: 850;
}

.step.active > span {
  color: #fff;
  background: var(--orange);
}

.step h3 {
  margin: 0 0 3px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.workflow-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  align-content: center;
}

.visual-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.visual-main {
  position: relative;
  z-index: 2;
  width: 88%;
  margin-left: auto;
  padding: 34px;
  border: 1px solid #edf0f2;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: visualFloat 6s ease-in-out infinite;
}

.visual-label {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.visual-main > strong {
  font-size: 25px;
}

.visual-main p {
  margin: 8px 0 24px;
  color: var(--muted);
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-row span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  font-weight: 750;
}

.choice-row .selected {
  color: var(--success);
  border-color: #bee9d7;
  background: #ebfaf4;
}

.progress-line {
  height: 8px;
  margin: 27px 0 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #eceff2;
}

.progress-line i {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  animation: progressBreath 3.6s ease-in-out infinite;
}

.visual-main small {
  color: var(--muted);
}

.photo-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 22px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 13px;
  align-items: center;
  width: 290px;
  padding: 15px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(24, 32, 42, .14);
  animation: photoFloat 5.2s ease-in-out infinite;
}

.photo-placeholder {
  width: 56px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 12px;
  background: var(--orange-light);
  font-size: 22px;
}

.photo-card div:nth-child(2) {
  display: grid;
}

.photo-card strong {
  font-size: 13px;
}

.photo-card small {
  color: var(--muted);
  font-size: 10px;
}

.photo-card > span {
  color: var(--success);
}

.floating-badge {
  position: absolute;
  z-index: 4;
  top: 30px;
  left: 18px;
  padding: 14px 17px;
  color: #fff;
  border-radius: 15px;
  background: var(--success);
  box-shadow: 0 15px 30px rgba(22, 163, 106, .28);
  font-size: 11px;
  animation: badgePop 4.4s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  font-size: 20px;
}

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

.role-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  opacity: 0;
  background: #fff;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease, border-color .25s ease;
}

.role-grid article:hover {
  border-color: rgba(245, 124, 0, .28);
  box-shadow: 0 18px 44px rgba(27, 37, 48, .08);
  transform: translateY(-4px);
}

.role-grid .role-highlight {
  border-color: rgba(245, 124, 0, .25);
  background: linear-gradient(180deg, #fff8ef, #fff);
  box-shadow: 0 20px 50px rgba(245, 124, 0, .1);
}

.role-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 17px;
  background: var(--orange-light);
  font-size: 24px;
}

.role-grid h3 {
  margin: 23px 0 8px;
  font-size: 21px;
}

.role-grid p,
.role-grid li {
  color: var(--muted);
  font-size: 14px;
}

.role-grid ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.role-grid li::before {
  margin-right: 9px;
  color: var(--orange);
  content: "\2713";
  font-weight: 850;
}

.download-section {
  padding-top: 30px;
}

.download-card {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  padding: 70px;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(15, 118, 110, .16), transparent 28%),
    linear-gradient(135deg, #f99817, #e86400 64%, #c65306);
}

.download-card::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  content: "";
  animation: orbitLine 10s linear infinite;
}

.download-copy {
  position: relative;
  z-index: 2;
}

.eyebrow.light {
  color: #fff;
  opacity: .8;
}

.download-copy h2 {
  max-width: 640px;
}

.download-copy > p {
  max-width: 620px;
  color: rgba(255,255,255,.84);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-button {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 17px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #1d2127, #090b0f);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.store-icon {
  width: 29px;
  height: 29px;
  display: grid;
  flex: 0 0 29px;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.play-store-icon svg {
  fill: none;
}

.play-blue {
  fill: #5bbcff;
}

.play-green {
  fill: #45d38a;
}

.play-yellow {
  fill: #ffd45a;
}

.play-red {
  fill: #ff6b64;
}

.store-icon.triangle {
  display: none;
}

.store-button > span:last-child {
  display: grid;
  line-height: 1.05;
}

.store-button small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1px;
}

.store-button strong {
  margin-top: 3px;
  font-size: 18px;
  letter-spacing: -.2px;
}

.store-note {
  display: block;
  margin-top: 14px;
  opacity: .7;
}

.download-art {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.download-art img {
  width: 160px;
  border-radius: 38px;
  box-shadow: 0 28px 65px rgba(109, 43, 0, .32);
  transform: rotate(4deg);
  animation: iconFloat 5s ease-in-out infinite;
}

.download-art div {
  display: grid;
  margin-top: 22px;
  line-height: 1.1;
}

.download-art strong {
  font-size: 22px;
}

.download-art span {
  margin-top: 6px;
  opacity: .8;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 100px;
  padding: 65px 0 25px;
  color: #c8ced6;
  background: #151a20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  color: #fff;
}

.footer-grid p {
  max-width: 330px;
  color: #8f98a3;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 23px;
  border-top: 1px solid #2a3037;
  color: #7f8994;
  font-size: 12px;
}

.legal-hero {
  padding: 95px 0 70px;
  background: linear-gradient(180deg, #fff7ed, #fff);
  text-align: center;
}

.legal-heading h1 {
  margin: 12px 0 5px;
  font-size: clamp(45px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-heading p {
  color: var(--muted);
}

.legal-section {
  padding: 70px 0 30px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  font-size: 13px;
}

.legal-nav strong {
  margin-bottom: 7px;
  font-size: 14px;
}

.legal-nav a {
  color: var(--muted);
}

.legal-nav a:hover {
  color: var(--orange);
}

.legal-content {
  max-width: 800px;
}

.legal-content section {
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 15px;
  font-size: 27px;
  letter-spacing: 0;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(1deg) translate3d(0, -16px, 0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(.96);
    opacity: .78;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes cardLift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

@keyframes visualFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes photoFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes badgePop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes progressBreath {
  0%, 100% {
    width: 64%;
  }
  50% {
    width: 78%;
  }
}

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

@keyframes iconFloat {
  0%, 100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-10px);
  }
}

.legal-content h3 {
  margin: 24px 0 6px;
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  color: #56606c;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--orange);
  font-weight: 750;
}

.legal-notice {
  margin-top: 24px;
  padding: 18px 20px;
  color: #7a4a0e;
  border: 1px solid #f4d7ae;
  border-radius: 14px;
  background: #fff8ec;
}

@media (max-width: 980px) {
  .hero-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .phone-stage {
    min-height: 660px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid {
    gap: 45px;
  }

  .workflow-copy {
    text-align: center;
  }

  .steps {
    max-width: 680px;
    margin-inline: auto;
    text-align: left;
  }

  .workflow-visual {
    width: min(600px, 100%);
    margin-inline: auto;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    grid-template-columns: 1fr;
    padding: 55px;
    text-align: center;
  }

  .download-copy > p {
    margin-inline: auto;
  }

  .store-buttons {
    justify-content: center;
  }

  .download-art {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .nav-toggle span {
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 65px 65px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
    letter-spacing: -2px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-trust {
    gap: 18px;
  }

  .hero-trust div {
    min-width: 80px;
  }

  .phone-stage {
    min-height: 600px;
    transform: scale(.9);
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .workflow-copy h2,
  .download-copy h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

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

  .feature-card {
    min-height: 245px;
  }

  .audience-inline {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
  }

  .workflow-visual {
    min-height: 430px;
  }

  .visual-main {
    width: 100%;
    padding: 25px;
  }

  .photo-card {
    left: 12px;
    bottom: 5px;
  }

  .floating-badge {
    top: 0;
  }

  .download-card {
    width: min(100% - 28px, 1160px);
    padding: 45px 24px;
    border-radius: 26px;
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-nav {
    position: static;
  }

  .legal-heading h1 {
    letter-spacing: 0;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero-actions,
  .hero-trust,
  .choice-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 540px;
    transform: scale(.8);
  }

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

  .photo-card {
    width: calc(100% - 24px);
  }

  .floating-badge {
    left: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
