:root {
  --ink: #0a2342;
  --ink-soft: #405672;
  --blue: #075a9c;
  --blue-bright: #0f78c9;
  --navy: #071b32;
  --navy-2: #0b2948;
  --teal: #13b6aa;
  --lime: #bada39;
  --orange: #ff8a3d;
  --cream: #f5f8f1;
  --mist: #edf5f7;
  --line: rgba(10, 35, 66, 0.13);
  --white: #ffffff;
  --shadow-sm: 0 16px 42px rgba(7, 27, 50, 0.09);
  --shadow-lg: 0 35px 90px rgba(7, 27, 50, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fbfdfb;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header,
.legal-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 251, 0.88);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  padding: 12px clamp(22px, 5vw, 78px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
}

.wordmark-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--blue), var(--teal));
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(7, 90, 156, 0.22);
  color: white;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  letter-spacing: 0.06em;
  transform: rotate(-2deg);
  width: 44px;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.wordmark-copy strong,
.footer-brand strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark-copy small,
.footer-brand small {
  color: #62748a;
  font-size: 11px;
  margin-top: 5px;
}

.site-header nav {
  display: flex;
  gap: clamp(22px, 3vw, 44px);
}

.site-header nav a {
  color: #3d526d;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.footer-links a:hover {
  color: var(--blue-bright);
}

.header-cta {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  justify-self: end;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--blue);
  box-shadow: 0 10px 28px rgba(7, 90, 156, 0.22);
  transform: translateY(-2px);
}

.hero {
  align-items: center;
  background:
    linear-gradient(125deg, rgba(245, 248, 241, 0.98) 0%, rgba(238, 249, 249, 0.92) 55%, rgba(233, 246, 251, 0.97) 100%);
  display: grid;
  gap: clamp(42px, 6vw, 92px);
  grid-template-columns: minmax(360px, 0.83fr) minmax(520px, 1.17fr);
  min-height: min(840px, calc(100vh - 78px));
  overflow: hidden;
  padding: clamp(80px, 10vw, 142px) clamp(24px, 6vw, 96px) clamp(86px, 10vw, 140px);
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(7, 90, 156, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  inset: 0 52% 0 0;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  opacity: 0.6;
  position: absolute;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
}

.hero-orb-one {
  background: var(--lime);
  height: 320px;
  left: -170px;
  top: 3%;
  width: 320px;
}

.hero-orb-two {
  background: var(--teal);
  bottom: -170px;
  height: 360px;
  right: 18%;
  width: 360px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 11px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--teal);
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.hero h1 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 27px 0 30px;
  max-width: 760px;
}

.hero h1 em {
  color: var(--blue-bright);
  display: block;
  font-weight: 500;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.58;
  margin: 0;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.01em;
  min-height: 52px;
  padding: 0 25px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--blue), var(--blue-bright));
  box-shadow: 0 15px 32px rgba(7, 90, 156, 0.24);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(7, 90, 156, 0.33);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 90, 156, 0.22);
  color: var(--blue);
}

.trust-row {
  color: #53697f;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 18px;
  margin-top: 32px;
}

.trust-row b,
.pricing-points b {
  color: var(--teal);
}

.hero-visual {
  perspective: 1400px;
}

.visual-glow {
  background: radial-gradient(circle, rgba(15, 120, 201, 0.25), transparent 65%);
  inset: -130px;
  position: absolute;
}

.app-frame {
  background: white;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: rotateY(-5deg) rotateX(1.5deg);
}

.app-frame::after {
  background: linear-gradient(108deg, rgba(255,255,255,0.2), transparent 36%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.app-frame-top {
  align-items: center;
  background: #f4f8fa;
  border-bottom: 1px solid #d7e2e9;
  display: flex;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
}

.app-frame-top span {
  background: #c3d4df;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.app-frame-top span:first-child { background: var(--orange); }
.app-frame-top span:nth-child(2) { background: var(--lime); }
.app-frame-top span:nth-child(3) { background: var(--teal); }

.app-frame-top small {
  color: #63778c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-left: 9px;
}

.app-frame img {
  aspect-ratio: 1.531;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.metric-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 18px;
  position: absolute;
  z-index: 3;
}

.metric-card span {
  color: #6a7d90;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.metric-card strong {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 20px;
}

.metric-card-a { bottom: -25px; left: -30px; }
.metric-card-b { right: -28px; top: 18%; }

.signal-bar {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px clamp(24px, 6vw, 96px);
}

.signal-bar div {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 3px clamp(16px, 3vw, 46px);
}

.signal-bar div:first-child { padding-left: 0; }
.signal-bar div:last-child { border-right: 0; }

.signal-bar strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.signal-bar span {
  color: #89a5bb;
  font-size: 11px;
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 112px);
}

.section-heading {
  max-width: 790px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section h2,
.risk-banner h2,
.legal-document h1 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 23px 0 0;
}

.intro-section {
  background: white;
}

.section-intro {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  margin: 38px 0 58px;
  max-width: 860px;
}

.feature-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 290px;
  padding: 34px;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  background: var(--cream);
  box-shadow: inset 0 -4px var(--teal);
  transform: translateY(-4px);
}

.feature-number,
.step-index {
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.feature-card h3,
.workflow-step h3 {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  margin: 50px 0 14px;
}

.feature-card p,
.workflow-step p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.product-tour {
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(19, 182, 170, 0.18), transparent 30%),
    linear-gradient(145deg, var(--navy) 0%, #0b3154 100%);
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
}

.eyebrow-light { color: #67dcd3; }
.eyebrow-warm { color: #cc5b18; }
.eyebrow-warm > span { background: var(--orange); }

.product-tour-copy h2,
.pricing-copy h2 {
  color: white;
}

.product-tour-copy > p,
.pricing-copy > p {
  color: #b5cad9;
  font-size: 17px;
  line-height: 1.7;
}

.check-list {
  color: #d9e8f1;
  display: grid;
  font-size: 13px;
  gap: 14px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.check-list span {
  color: var(--lime);
  font-weight: 900;
  margin-right: 9px;
}

.tour-gallery {
  display: grid;
  gap: 18px;
  position: relative;
}

.tour-gallery::before {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  filter: blur(10px);
  height: 250px;
  opacity: 0.16;
  position: absolute;
  right: -90px;
  top: -80px;
  width: 250px;
}

.tour-shot {
  background: #f6fafb;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.3);
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.tour-shot-main {
  transform: rotate(1.4deg);
}

.tour-shot-small {
  margin-left: 10%;
  transform: rotate(-1deg);
  width: 82%;
}

.tour-shot img {
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.tour-shot-main img { aspect-ratio: 1.52; }
.tour-shot-small img { aspect-ratio: 4.89; }

.tour-shot figcaption {
  background: white;
  color: #50657b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 13px 17px;
  text-transform: uppercase;
}

.workflow {
  background: var(--cream);
}

.section-heading.centered > p {
  color: var(--ink-soft);
  font-size: 17px;
}

.workflow-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
}

.workflow-step {
  background: white;
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 27, 50, 0.05);
  min-height: 300px;
  padding: 30px;
  position: relative;
}

.workflow-step::after {
  background: var(--lime);
  border-radius: 99px;
  bottom: 28px;
  content: "";
  height: 4px;
  left: 30px;
  width: 42px;
}

.workflow-step h3 { margin-top: 55px; }

.evidence {
  background: #fff8f0;
}

.evidence-layout {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 0.92fr 1.08fr;
}

.evidence-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
  margin: 30px 0;
}

.evidence-note {
  background: white;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 23px;
}

.evidence-note strong {
  color: #ba4f16;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-note span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.result-panel {
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: white;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.result-panel::before {
  background: var(--teal);
  border-radius: 50%;
  content: "";
  filter: blur(70px);
  height: 230px;
  opacity: 0.18;
  position: absolute;
  right: -90px;
  top: -100px;
  width: 230px;
}

.result-panel-head {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  padding-bottom: 21px;
  position: relative;
}

.result-panel-head span {
  color: #6fd7cf;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.result-panel-head small { color: #88a1b5; }

.result-row {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 26px 0;
  position: relative;
}

.featured-result {
  background: rgba(19, 182, 170, 0.1);
  margin: 0 -17px;
  padding-left: 17px;
  padding-right: 17px;
}

.risk-badge {
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--lime);
  display: flex;
  font-family: Georgia, serif;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.result-row > div:nth-child(2),
.result-number {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-row span,
.result-number span {
  color: #8ea6b9;
  font-size: 10px;
}

.result-number {
  text-align: right;
}

.result-number strong {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 25px;
}

.comparison-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 24px 0 7px;
}

.comparison-row span { color: #a9bdcc; font-size: 12px; }
.comparison-row strong { font-family: Georgia, serif; font-size: 20px; }
.comparison-row small { color: #8ca4b7; font-family: inherit; font-size: 10px; }

.result-footnote {
  color: #748fa5;
  font-size: 9px;
  line-height: 1.5;
  margin: 22px 0 0;
}

.gallery-section {
  background: white;
}

.detail-gallery {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 65px;
}

.detail-gallery figure {
  margin: 0;
}

.gallery-image {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(19,182,170,0.1), rgba(7,90,156,0.11)),
    #eff6f7;
  border: 1px solid rgba(10, 35, 66, 0.09);
  border-radius: 22px;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 60px);
}

.gallery-image img {
  border: 1px solid #ccdbe4;
  box-shadow: 0 24px 55px rgba(7, 27, 50, 0.16);
  width: 100%;
}

.links-image img {
  object-fit: cover;
  object-position: top;
}

.detail-gallery figcaption {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 8px;
}

.detail-gallery figcaption b {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.detail-gallery figcaption span {
  color: var(--ink-soft);
  font-size: 13px;
}

.pricing {
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(19,182,170,0.2), transparent 30%),
    linear-gradient(135deg, #071b32, #0a2d4e);
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: 1fr 0.68fr;
  overflow: hidden;
  position: relative;
}

.pricing::after {
  border: 1px solid rgba(186,218,57,0.23);
  border-radius: 50%;
  content: "";
  height: 540px;
  position: absolute;
  right: -270px;
  top: -250px;
  width: 540px;
}

.pricing-points {
  color: #d5e4ee;
  display: grid;
  font-size: 13px;
  gap: 15px;
  margin-top: 34px;
}

.pricing-points b { margin-right: 9px; }

.price-card {
  background: #fffdf8;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  box-shadow: 0 34px 75px rgba(0,0,0,0.25);
  color: var(--ink);
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  text-align: center;
  z-index: 2;
}

.offer-pill {
  background: #e7f6b5;
  border-radius: 999px;
  color: #4b6500;
  display: inline-flex;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  padding: 9px 14px;
}

.regular-price {
  color: #748397;
  font-size: 12px;
  margin-top: 28px;
}

.price-line {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  line-height: 0.9;
  margin-top: 18px;
}

.price-line span,
.price-line sup {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 24px;
  padding-top: 10px;
}

.price-line strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 86px;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.price-period {
  color: #6f7f90;
  font-size: 11px;
  margin: 12px 0 28px;
  text-transform: uppercase;
}

.button-price {
  background: linear-gradient(120deg, var(--orange), #ff6f3d);
  box-shadow: 0 14px 30px rgba(255, 111, 61, 0.24);
  color: white;
  width: 100%;
}

.price-card > p {
  color: #8a6a58;
  font-size: 10px;
  line-height: 1.45;
}

.price-divider {
  background: var(--line);
  height: 1px;
  margin: 25px 0;
}

.price-card > small {
  color: #84909f;
  display: block;
  font-size: 9px;
  line-height: 1.55;
}

.faq {
  background: var(--mist);
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-list details {
  border-bottom: 1px solid rgba(10, 35, 66, 0.14);
  padding: 0;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: Georgia, serif;
  font-size: 20px;
  justify-content: space-between;
  list-style: none;
  padding: 23px 0;
}

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

.faq-list summary span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 24px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: -5px 46px 25px 0;
}

.risk-banner {
  align-items: center;
  background: #fff0e6;
  border-bottom: 1px solid rgba(186,79,22,0.14);
  border-top: 1px solid rgba(186,79,22,0.14);
  display: grid;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 58px clamp(24px, 7vw, 112px);
}

.risk-label {
  color: #b94e16;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.risk-banner h2 {
  font-size: clamp(30px, 3vw, 46px);
  margin-top: 12px;
}

.risk-banner p {
  color: #785742;
  font-size: 12px;
  line-height: 1.7;
}

footer {
  align-items: center;
  background: #06172a;
  color: white;
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr auto;
  padding: 50px clamp(24px, 7vw, 112px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 13px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand small { color: #809bb0; }

.footer-links {
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 24px;
}

.footer-legal {
  color: #708a9e;
  font-size: 9px;
  grid-column: 1 / -1;
  line-height: 1.55;
  margin: 6px 0 0;
}

/* Legal page */
.legal-page {
  background: var(--cream);
  min-height: 100vh;
}

.legal-header {
  grid-template-columns: 1fr auto;
}

.legal-back {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.legal-document {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  margin: clamp(45px, 8vw, 110px) auto;
  max-width: 980px;
  padding: clamp(34px, 7vw, 86px);
}

.legal-document h1 {
  font-size: clamp(43px, 6vw, 70px);
  margin-bottom: 30px;
}

.legal-lead {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.legal-document h2 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 13px;
}

.legal-document section p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
}

.legal-final-note {
  background: #fff4e9;
  border: 0 !important;
  border-radius: 16px;
  padding: 25px !important;
}

.legal-footer {
  background: var(--navy);
  color: #8da5b7;
  display: block;
  font-size: 10px;
  padding: 35px;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { max-width: 790px; }
  .hero-visual { margin: 15px auto 0; max-width: 920px; width: 100%; }
  .product-tour,
  .evidence-layout,
  .pricing,
  .faq { grid-template-columns: 1fr; }
  .product-tour-copy,
  .pricing-copy { max-width: 760px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { max-width: 520px; width: 100%; }
}

@media (max-width: 720px) {
  .site-header,
  .legal-header { min-height: 68px; padding: 10px 17px; }
  .wordmark-copy small { display: none; }
  .wordmark-copy strong { font-size: 10px; }
  .wordmark-mark { height: 32px; width: 40px; }
  .header-cta { font-size: 10px; padding: 10px 13px; }
  .hero { padding: 70px 20px 82px; }
  .hero::before { inset: 0; }
  .hero h1 { font-size: clamp(52px, 18vw, 82px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .metric-card { display: none; }
  .app-frame { border-radius: 14px; transform: none; }
  .signal-bar { grid-template-columns: 1fr 1fr; padding: 22px 20px; }
  .signal-bar div { border-bottom: 1px solid rgba(255,255,255,0.1); border-right: 0; padding: 16px 8px; }
  .signal-bar div:first-child { padding-left: 8px; }
  .section { padding: 82px 20px; }
  .section h2,
  .risk-banner h2,
  .legal-document h1 { font-size: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; padding: 27px; }
  .tour-shot-main,
  .tour-shot-small { margin-left: 0; transform: none; width: 100%; }
  .workflow-grid,
  .detail-gallery { grid-template-columns: 1fr; }
  .workflow-step { min-height: 260px; }
  .result-panel { border-radius: 20px; padding: 22px; }
  .result-row { align-items: start; grid-template-columns: auto 1fr; }
  .result-number { grid-column: 2; text-align: left; }
  .result-panel-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .gallery-image { min-height: 250px; }
  .faq-list summary { font-size: 18px; }
  .risk-banner { gap: 22px; grid-template-columns: 1fr; padding: 48px 20px; }
  footer { grid-template-columns: 1fr; padding: 42px 20px; }
  .footer-links { flex-wrap: wrap; }
  .legal-back { font-size: 10px; }
  .legal-document { border-left: 0; border-radius: 0; border-right: 0; margin: 20px 0 50px; padding: 45px 22px; }
}

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