@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 650 800;
  font-display: swap;
  src: url("./assets/fonts/fraunces-latin.woff2") format("woff2");
}

:root {
  --ink: #14342f;
  --ink-soft: #31534b;
  --headline: #0d3a34;
  --headline-deep: #092c28;
  --headline-accent: #1f6b56;
  --headline-blue: #2f6680;
  --copy: #2d5149;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --mist: #ecf6ef;
  --mint: #c7ead8;
  --green: #2f8f73;
  --green-dark: #1f6b56;
  --sky: #b8d8f2;
  --blue: #5e8fd6;
  --sun: #f2bf63;
  --coral: #e56d55;
  --line: rgba(20, 52, 47, 0.13);
  --shadow-soft: 0 24px 70px rgba(26, 58, 48, 0.14);
  --shadow-tight: 0 14px 35px rgba(26, 58, 48, 0.1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--copy);
  background:
    linear-gradient(180deg, #f7fbf5 0%, #fbfcf7 34%, #ffffff 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(20, 52, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 52, 47, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 70%);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
a,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

table {
  border-collapse: collapse;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px clamp(18px, 4vw, 44px) 10px;
  background: linear-gradient(180deg, rgba(247, 251, 245, 0.96), rgba(247, 251, 245, 0.74));
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, padding 200ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  box-shadow: 0 1px 0 var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1;
}

.brand-word span {
  color: var(--green-dark);
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  filter: drop-shadow(0 10px 18px rgba(20, 52, 47, 0.16));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(20, 52, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
}

.nav-contact:hover {
  background: rgba(255, 255, 255, 0.96);
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(20, 52, 47, 0.18);
}

.section-pad {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 56px);
}

.hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding-top: clamp(24px, 3.7vw, 46px);
  padding-bottom: clamp(24px, 3.6vw, 42px);
}

.hero::before,
.hero::after {
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 0;
  bottom: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(199, 234, 216, 0.12), transparent 42%),
    linear-gradient(245deg, rgba(184, 216, 242, 0.14), transparent 44%);
  opacity: 0.72;
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: center;
  gap: clamp(30px, 4.5vw, 58px);
}

.hero-copy {
  transform-origin: left center;
  opacity: 1;
  filter: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: clamp(0.88rem, 0.65vw + 0.68rem, 1rem);
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  color: var(--headline);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--headline-deep);
  background: linear-gradient(135deg, var(--headline-deep) 0%, var(--headline-accent) 62%, var(--headline-blue) 100%);
  background-clip: text;
  font-size: clamp(3.1rem, 5vw, 4.65rem);
  font-weight: 760;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.5vw, 4.4rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 12px;
  color: #19483f;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.35vw, 1.14rem);
  line-height: 1.48;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(20, 52, 47, 0.2);
}

.button-primary:hover {
  background: #0d2824;
}

.button-secondary {
  border-color: rgba(20, 52, 47, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  box-shadow: 0 12px 26px rgba(20, 52, 47, 0.09);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(47, 143, 115, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-visual {
  perspective: 1400px;
  transform-origin: center;
  filter: drop-shadow(0 18px 38px rgba(20, 52, 47, 0.1));
}

.report-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 52, 47, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(199, 234, 216, 0.72), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 242, 0.96));
  box-shadow: var(--shadow-soft);
  transform: rotateX(2deg) rotateY(-5deg);
  transform-origin: center;
  padding: clamp(18px, 3vw, 28px);
  animation: report-float 7s ease-in-out infinite;
}

.report-shell > * {
  position: relative;
  z-index: 1;
}

.report-shell::before {
  position: absolute;
  inset: -60% auto -60% -28%;
  width: 36%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: rotate(14deg);
  animation: report-sheen 6.5s ease-in-out infinite;
}

.report-shell::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(20, 52, 47, 0.12);
  border-radius: 999px;
  content: "";
  background:
    conic-gradient(from 12deg, var(--green) 0 44%, var(--blue) 44% 70%, var(--sun) 70% 88%, var(--coral) 88% 100%);
  opacity: 0.12;
}

@keyframes report-sheen {
  0%,
  34% {
    transform: translateX(-140%) rotate(14deg);
  }
  64%,
  100% {
    transform: translateX(480%) rotate(14deg);
  }
}

@keyframes report-float {
  0%,
  100% {
    transform: rotateX(2deg) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: rotateX(1deg) rotateY(-4deg) translateY(-8px);
  }
}

.report-topbar,
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.report-topbar p,
.panel-header p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.report-topbar strong,
.panel-header strong {
  font-size: 1.18rem;
}

.status-pill,
.panel-header span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 143, 115, 0.12);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 24px;
}

.metric-grid article {
  min-height: 118px;
  padding: 15px;
  border: 1px solid rgba(20, 52, 47, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(20, 52, 47, 0.05);
}

.metric-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 50%;
}

.metric-dot.refund,
.label.refund {
  background: rgba(47, 143, 115, 0.14);
  color: var(--green-dark);
}

.metric-dot.exchange,
.label.exchange {
  background: rgba(94, 143, 214, 0.15);
  color: #315f9e;
}

.metric-dot.credit,
.label.credit {
  background: rgba(240, 180, 91, 0.18);
  color: #8d5d17;
}

.metric-dot.open,
.label.open {
  background: rgba(229, 109, 85, 0.16);
  color: #a74232;
}

.metric-dot.refund {
  background: var(--green);
}

.metric-dot.exchange {
  background: var(--blue);
}

.metric-dot.credit {
  background: var(--sun);
}

.metric-dot.open {
  background: var(--coral);
}

.metric-grid p {
  min-height: 38px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.metric-grid strong {
  display: block;
  max-width: 100%;
  font-size: clamp(1.45rem, 2.1vw, 1.72rem);
  line-height: 1;
  white-space: nowrap;
  overflow-wrap: normal;
  font-variant-numeric: tabular-nums;
}

.metric-grid small,
.summary-cards small {
  display: block;
  margin-top: 5px;
  color: rgba(49, 83, 75, 0.78);
  font-size: 0.74rem;
  font-weight: 750;
}

.report-breakdown {
  padding: 18px;
  border: 1px solid rgba(20, 52, 47, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.breakdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.breakdown-head strong {
  color: var(--ink);
  font-size: 0.84rem;
  white-space: nowrap;
}

.stacked-bar {
  display: flex;
  overflow: hidden;
  height: 18px;
  border-radius: 999px;
  background: rgba(20, 52, 47, 0.08);
}

.stacked-bar span {
  width: var(--size);
  min-width: 10px;
}

.stacked-bar .refund,
.breakdown-legend .refund {
  background: var(--green);
}

.stacked-bar .exchange,
.breakdown-legend .exchange {
  background: var(--blue);
}

.stacked-bar .credit,
.breakdown-legend .credit {
  background: var(--sun);
}

.stacked-bar .open,
.breakdown-legend .open {
  background: var(--coral);
}

.breakdown-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.breakdown-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breakdown-legend i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.report-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.report-row {
  display: grid;
  grid-template-columns: 64px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(20, 52, 47, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.88rem;
  transition: background 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.report-row.is-active {
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(20, 52, 47, 0.08);
  transform: translateX(4px);
}

.report-row strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.order-id {
  color: var(--ink);
  font-weight: 800;
}

.return-date {
  color: rgba(49, 83, 75, 0.72);
  font-size: 0.78rem;
  font-weight: 780;
  white-space: nowrap;
}

.outcome-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 -12px 34px rgba(20, 52, 47, 0.13);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: strip-scroll 36s linear infinite;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 3vw, 2rem);
  white-space: nowrap;
}

@keyframes strip-scroll {
  to {
    transform: translateX(-50%);
  }
}

.plain-section {
  background: #ffffff;
}

.fix-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 234, 216, 0.58), transparent 30%),
    linear-gradient(180deg, #fbfcf7 0%, #eff8f0 100%);
}

.fix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.fix-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(20, 52, 47, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(20, 52, 47, 0.08);
}

.fix-card::after {
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  content: "";
  background: rgba(47, 143, 115, 0.1);
}

.fix-card > span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.fix-card h3 {
  max-width: 260px;
  color: var(--headline-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.fix-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.two-column,
.data-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  width: min(1100px, 100%);
  margin: 0 auto;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-heading p,
.story-block p,
.final-panel p,
.clarity-card p,
.audience-card p,
.step-card p,
.faq-list p {
  color: var(--ink-soft);
}

.section-heading > p:last-child,
.centered > p {
  max-width: 690px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.centered {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.story-block {
  display: grid;
  gap: 18px;
  font-size: 1.13rem;
}

.story-block p {
  margin-bottom: 0;
}

.truth-card {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  padding: 20px;
  border: 1px solid rgba(47, 143, 115, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(199, 234, 216, 0.54), rgba(255, 255, 255, 0.84));
  box-shadow: 0 14px 28px rgba(20, 52, 47, 0.06);
}

.truth-card strong {
  font-size: 1.02rem;
}

.truth-card span {
  color: var(--ink-soft);
}

.flow-section {
  position: relative;
  min-height: auto;
  overflow: clip;
  background:
    radial-gradient(circle at 13% 16%, rgba(199, 234, 216, 0.2), transparent 28%),
    radial-gradient(circle at 92% 75%, rgba(94, 143, 214, 0.2), transparent 30%),
    linear-gradient(145deg, #071310 0%, #10251f 46%, #071411 100%);
  color: #ffffff;
}

.flow-sticky {
  position: relative;
  display: grid;
  min-height: auto;
  align-items: center;
  padding: clamp(54px, 7vw, 84px) clamp(20px, 5vw, 56px);
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(620px, 1.3fr);
  width: min(1220px, 100%);
  margin: 0 auto;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.flow-section .eyebrow {
  color: var(--mint);
}

.flow-section h2,
.data-section h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.flow-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.flow-steps {
  display: inline-grid;
  grid-template-columns: max-content;
  max-width: 100%;
  gap: 10px;
  margin-top: 30px;
}

.flow-steps span {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.flow-steps span.is-active,
.flow-steps span.is-done {
  border-color: rgba(199, 234, 216, 0.4);
  background: rgba(199, 234, 216, 0.13);
  color: #ffffff;
}

.flow-steps span.is-active {
  transform: none;
}

.flow-board {
  position: relative;
  min-height: 650px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.flow-board::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 52% 48%, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}

.flow-stage {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.flow-stage span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(199, 234, 216, 0.13);
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-stage strong {
  max-width: 320px;
  color: #ffffff;
  font-size: 1rem;
  text-align: right;
}

.flow-canvas {
  position: relative;
  z-index: 2;
  height: min(56vw, 560px);
  min-height: 530px;
}

.flow-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.flow-map-lines-mobile {
  display: none;
}

.flow-map-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.source-path-base,
.path-ghost {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 5;
}

.source-path-live,
.outcome-path {
  stroke-width: 7;
  stroke-dasharray: 0.34 0.66;
  stroke-dashoffset: 1;
  opacity: 0.96;
  animation: flow-line-run 2.45s linear infinite;
  will-change: stroke-dashoffset;
}

.source-path-live {
  stroke: rgba(255, 255, 255, 0.74);
  stroke-dasharray: 0.42 0.58;
  animation-duration: 2.05s;
}

.path-refund {
  stroke: var(--green);
  animation-delay: 0s;
}

.path-exchange {
  stroke: var(--blue);
  animation-delay: -0.62s;
}

.path-credit {
  stroke: var(--sun);
  animation-delay: -1.23s;
}

.path-review {
  stroke: var(--coral);
  animation-delay: -1.84s;
}

.source-stack {
  position: absolute;
  left: 2.5%;
  top: 50%;
  width: clamp(136px, 18%, 166px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.source-node {
  --source-bg: rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.source-node:last-child {
  border-bottom: 0;
}

.source-node.is-active {
  background: var(--source-bg);
  opacity: 1;
  transform: translateX(0);
}

.source-node span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.source-node strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.15;
}

.source-shopify {
  --source-bg: rgba(199, 234, 216, 0.12);
}

.source-refunds {
  --source-bg: rgba(47, 143, 115, 0.15);
}

.source-orders {
  --source-bg: rgba(94, 143, 214, 0.14);
}

.source-credit {
  --source-bg: rgba(242, 191, 99, 0.13);
}

.source-tags {
  --source-bg: rgba(229, 109, 85, 0.14);
}

.flow-hub {
  position: absolute;
  z-index: 3;
  left: 45.5%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 36% 24%, rgba(199, 234, 216, 0.18), transparent 50%),
    rgba(8, 22, 18, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
  transition: box-shadow 200ms ease;
}

.flow-hub.is-active {
  box-shadow:
    0 0 0 14px rgba(199, 234, 216, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.36);
}

.hub-orbit {
  --hub-angle: 0deg;
  position: absolute;
  inset: 7px;
  border-radius: 28px;
  background: conic-gradient(
    from var(--hub-angle),
    #ff4f5e,
    #ff9f43,
    #ffe66d,
    #3ee58f,
    #28d7d1,
    #4e9cff,
    #9b6bff,
    #ff4fba,
    #ff4f5e
  );
  opacity: 0.92;
  animation: hub-rainbow-flow 4.8s linear infinite;
  filter: drop-shadow(0 0 12px rgba(78, 156, 255, 0.2));
  pointer-events: none;
}

.hub-orbit::after {
  position: absolute;
  inset: 5px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 36% 24%, rgba(199, 234, 216, 0.18), transparent 50%),
    rgba(8, 22, 18, 0.96);
  content: "";
}

.hub-mark {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 19px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.hub-mark img {
  width: 100%;
  height: 100%;
}

.flow-hub strong,
.flow-hub small {
  position: relative;
  z-index: 1;
}

.flow-hub strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1;
}

.flow-hub small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

.output-stack {
  position: absolute;
  right: 2.5%;
  top: 22px;
  bottom: 22px;
  width: min(224px, 28%);
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.outcome-node {
  --outcome-bg: rgba(255, 255, 255, 0.08);
  --outcome-border: rgba(255, 255, 255, 0.16);
  display: flex;
  min-height: 0;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--outcome-border);
  background: var(--outcome-bg);
  opacity: 1;
  transform: translateX(0) scale(1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.outcome-node.is-active,
.outcome-node.is-done {
  border-color: var(--outcome-border);
  background: var(--outcome-bg);
  opacity: 1;
  transform: translateX(0) scale(1);
}

.outcome-node.is-done {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.output-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--outcome-border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.outcome-node strong,
.outcome-node small {
  display: block;
}

.outcome-node strong {
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.14;
}

.outcome-node small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  line-height: 1.35;
}

.outcome-refund {
  --outcome-bg: rgba(47, 143, 115, 0.16);
  --outcome-border: rgba(47, 143, 115, 0.42);
}

.outcome-exchange {
  --outcome-bg: rgba(94, 143, 214, 0.16);
  --outcome-border: rgba(94, 143, 214, 0.42);
}

.outcome-credit {
  --outcome-bg: rgba(242, 191, 99, 0.16);
  --outcome-border: rgba(242, 191, 99, 0.42);
}

.outcome-review {
  --outcome-bg: rgba(229, 109, 85, 0.16);
  --outcome-border: rgba(229, 109, 85, 0.42);
}

@property --hub-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes flow-line-run {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes hub-rainbow-flow {
  to {
    --hub-angle: 360deg;
  }
}

.muted-band {
  background:
    linear-gradient(180deg, var(--mist), #f8fbf4);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
  gap: 24px;
}

.report-panel,
.clarity-card,
.step-card,
.audience-card,
.final-panel,
.data-lists article {
  border: 1px solid rgba(20, 52, 47, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-tight);
}

.report-panel {
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(18px, 3vw, 26px);
}

.report-source-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 52, 47, 0.09);
  border-radius: 18px;
  background: #fbfcf7;
}

.report-source-row > span {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
}

.source-chips {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
}

.source-chips span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 143, 115, 0.1);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.summary-cards article {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(20, 52, 47, 0.1);
  border-radius: 18px;
  background: #fbfcf7;
}

.summary-cards p {
  min-height: 38px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.summary-cards strong {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.table-scroll-shell {
  position: relative;
}

.table-scroll-shell::after {
  position: absolute;
  top: 44px;
  right: 1px;
  bottom: 18px;
  width: 52px;
  border-radius: 0 18px 18px 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 72%);
}

.table-scroll-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin: -4px 2px 8px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.table-scroll-hint::after {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  content: "->";
  background: rgba(47, 143, 115, 0.12);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(20, 52, 47, 0.1);
  border-radius: 18px;
  background: #ffffff;
  scrollbar-color: rgba(20, 52, 47, 0.3) rgba(20, 52, 47, 0.08);
  scrollbar-width: thin;
}

.table-wrap::-webkit-scrollbar {
  height: 10px;
}

.table-wrap::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(20, 52, 47, 0.08);
}

.table-wrap::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(20, 52, 47, 0.34);
}

table {
  width: 100%;
  min-width: 760px;
  font-size: 0.91rem;
  table-layout: fixed;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(20, 52, 47, 0.09);
  text-align: left;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

th:nth-child(1),
td:nth-child(1) {
  width: 12%;
}

th:nth-child(2),
td:nth-child(2) {
  width: 15%;
}

th:nth-child(3),
td:nth-child(3) {
  width: 23%;
}

th:nth-child(4),
td:nth-child(4) {
  width: 31%;
}

th:nth-child(5),
td:nth-child(5) {
  width: 19%;
}

th {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.report-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.clarity-card {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  padding: 24px;
}

.clarity-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.check-list,
.data-lists ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li,
.data-lists li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before,
.data-lists li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: inset 0 0 0 3px #cfeedd;
}

.steps-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1100px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.step-card,
.audience-card {
  min-height: 256px;
  border-radius: 24px;
  padding: 26px;
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.data-section {
  background: var(--ink);
  color: #ffffff;
}

.data-section .eyebrow {
  color: var(--mint);
}

.data-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.data-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.data-lists article {
  min-height: 360px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  padding: 24px;
}

.data-lists h3 {
  color: #ffffff;
}

.data-lists li {
  color: rgba(255, 255, 255, 0.76);
}

.data-lists article:nth-child(2) li::before {
  background: var(--coral);
  box-shadow: inset 0 0 0 3px rgba(229, 109, 85, 0.3);
}

.audience-section {
  background: #ffffff;
}

.audience-card {
  min-height: 230px;
}

.faq-section {
  background: #f7fbf5;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(20, 52, 47, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 52, 47, 0.06);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

summary::marker {
  color: var(--green);
}

details p {
  margin: -6px 22px 20px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(199, 234, 216, 0.82), rgba(184, 216, 242, 0.55)),
    #f8fbf4;
}

.final-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  border-radius: 30px;
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
}

.final-panel h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-panel p {
  max-width: 650px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.onboarding-modal[hidden] {
  display: none;
}

.onboarding-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.onboarding-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 44, 40, 0.54);
  backdrop-filter: blur(12px);
}

.onboarding-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  width: min(1080px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 4%, rgba(199, 234, 216, 0.72), transparent 30%),
    #fbfcf7;
  box-shadow: 0 34px 100px rgba(9, 44, 40, 0.36);
}

.onboarding-dialog:focus {
  outline: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(20, 52, 47, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.onboarding-copy,
.upload-card {
  padding: clamp(22px, 4vw, 42px);
}

.onboarding-copy h2 {
  max-width: 520px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.onboarding-copy > p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.onboarding-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.onboarding-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.onboarding-form em {
  color: rgba(49, 83, 75, 0.72);
  font-style: normal;
  font-weight: 750;
}

.onboarding-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(20, 52, 47, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}

.onboarding-form input::placeholder {
  color: rgba(49, 83, 75, 0.48);
}

.onboarding-form input:focus {
  border-color: rgba(47, 143, 115, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 143, 115, 0.12);
}

.send-list {
  display: grid;
  gap: 10px;
}

.send-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(20, 52, 47, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.send-list article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.send-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.send-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.upload-card {
  display: grid;
  align-content: start;
  gap: 18px;
  border-left: 1px solid rgba(20, 52, 47, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.upload-card h3 {
  max-width: 420px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
}

.contact-dialog {
  width: min(680px, 100%);
  grid-template-columns: 1fr;
}

.contact-card {
  border-left: 0;
}

.contact-card h2 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-card > p {
  max-width: 540px;
  color: var(--ink-soft);
}

.contact-form {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-bottom: 0;
}

.contact-card textarea {
  min-height: 230px;
}

.email-card-head span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.email-card-head strong {
  color: var(--ink);
}

.upload-card textarea {
  width: 100%;
  min-height: 270px;
  resize: vertical;
  border: 1px solid rgba(20, 52, 47, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  line-height: 1.5;
  outline: none;
}

.onboarding-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.option-divider::before,
.option-divider::after {
  height: 1px;
  content: "";
  background: rgba(20, 52, 47, 0.12);
}

.upload-button {
  width: 100%;
}

.upload-note,
.help-link {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.copy-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: clamp(42px, 7vw, 76px) clamp(20px, 5vw, 56px) 30px;
  background:
    radial-gradient(circle at 16% 12%, rgba(199, 234, 216, 0.18), transparent 28%),
    var(--ink);
  color: #ffffff;
}

.footer-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand .brand-word,
.footer-brand .brand-word span {
  color: #ffffff;
}

.site-footer p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.button-footer {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 38px 0;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-grid h3 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

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

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .report-layout,
  .two-column,
  .flow-grid,
  .fix-grid,
  .data-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .report-shell {
    transform: none;
    animation: none;
  }

  .clarity-card {
    position: static;
  }

  .steps-grid,
  .audience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .fix-card,
  .audience-card {
    min-height: auto;
  }

  .flow-section {
    min-height: auto;
  }

  .flow-sticky {
    min-height: auto;
  }

  .flow-board {
    min-height: auto;
  }

  .flow-canvas {
    height: min(70vw, 560px);
    min-height: 520px;
  }

  .footer-top {
    display: grid;
  }
}

@media (max-width: 880px) {
  .onboarding-modal {
    align-items: start;
    overflow-y: auto;
    padding: max(12px, env(safe-area-inset-top)) 12px 12px;
    -webkit-overflow-scrolling: touch;
  }

  .onboarding-dialog {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    border-radius: 22px;
  }

  .modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 90;
    width: 44px;
    height: 44px;
    box-shadow: 0 12px 26px rgba(9, 44, 40, 0.16);
  }

  .upload-card {
    border-left: 0;
    border-top: 1px solid rgba(20, 52, 47, 0.1);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav-shell {
    gap: 10px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-contact {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .section-pad {
    padding-inline: 18px;
  }

  .fix-grid {
    gap: 12px;
  }

  .fix-card {
    padding: 20px;
    border-radius: 18px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .flow-section {
    min-height: auto;
  }

  .flow-sticky {
    align-items: start;
    min-height: auto;
    padding-block: 18px;
    padding-inline: 18px;
  }

  .flow-grid {
    gap: 18px;
  }

  .flow-section .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .flow-section .section-heading p {
    font-size: 0.95rem;
  }

  .flow-steps {
    display: grid;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
  }

  .flow-steps span {
    width: 100%;
    min-height: 30px;
    justify-content: center;
    padding-inline: 7px;
    font-size: 0.68rem;
    text-align: center;
  }

  .flow-steps span.is-active {
    transform: translateY(-2px);
  }

  .flow-board {
    padding: 12px;
    border-radius: 22px;
  }

  .flow-stage {
    display: none;
  }

  .flow-canvas {
    height: 350px;
    min-height: 350px;
  }

  .flow-map-lines-desktop {
    display: none;
  }

  .flow-map-lines-mobile {
    display: block;
  }

  .source-stack {
    left: 10px;
    right: 10px;
    top: 8px;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    backdrop-filter: none;
  }

  .source-node {
    grid-template-columns: 24px minmax(0, 1fr);
    min-height: 28px;
    gap: 6px;
    padding: 3px 7px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-4px);
  }

  .source-node:last-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .source-node span {
    width: 22px;
    height: 22px;
    border-radius: 9px;
    font-size: 0.64rem;
  }

  .source-node strong {
    font-size: 0.61rem;
  }

  .flow-hub {
    left: 50%;
    top: 172px;
    width: 82px;
    height: 82px;
    padding: 10px;
    border-radius: 21px;
  }

  .hub-orbit {
    inset: 5px;
    border-radius: 18px;
  }

  .hub-orbit::after {
    inset: 3.5px;
    border-radius: 14.5px;
  }

  .hub-mark {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

  .flow-hub strong {
    font-size: 0.65rem;
  }

  .flow-hub small {
    display: none;
  }

  .output-stack {
    left: 10px;
    right: 10px;
    top: 234px;
    bottom: auto;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 52px);
    gap: 8px;
  }

  .outcome-node {
    gap: 7px;
    padding: 7px;
    border-radius: 16px;
    transform: translateY(8px);
  }

  .output-icon {
    width: 27px;
    height: 27px;
    border-radius: 11px;
    font-size: 0.63rem;
  }

  .outcome-node strong {
    font-size: 0.74rem;
  }

  .outcome-node small {
    display: none;
  }

  h1 {
    font-size: clamp(2.36rem, 11vw, 3.05rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 2.9rem);
  }

  .button {
    width: 100%;
  }

  .hero-lede {
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    width: auto;
    max-width: 100%;
    min-height: 30px;
    justify-content: flex-start;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .product-visual {
    min-width: 0;
  }

  .report-shell {
    border-radius: 22px;
    padding: 14px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 14px;
  }

  .summary-cards,
  .data-lists {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: 84px;
    padding: 12px;
    border-radius: 14px;
  }

  .metric-grid p {
    min-height: 28px;
    margin-bottom: 5px;
    font-size: 0.76rem;
  }

  .metric-grid strong {
    font-size: clamp(1.25rem, 7.2vw, 1.55rem);
  }

  .report-breakdown {
    padding: 14px;
    border-radius: 16px;
  }

  .breakdown-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 12px;
  }

  .breakdown-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .report-list {
    gap: 8px;
    margin-top: 12px;
  }

  .report-row {
    grid-template-columns: 56px 58px 1fr;
    min-height: 48px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .report-row strong {
    grid-column: 2 / -1;
  }

  .report-row:nth-child(3) {
    display: none;
  }

  .report-panel,
  .clarity-card,
  .step-card,
  .audience-card,
  .data-lists article,
  .final-panel {
    border-radius: 20px;
  }

  .report-source-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .source-chips {
    gap: 6px;
  }

  .source-chips span {
    min-height: 24px;
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  table {
    font-size: 0.8rem;
  }

  .table-scroll-hint {
    display: flex;
  }

  th,
  td {
    padding: 11px 8px;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .footer-top {
    padding-bottom: 28px;
  }

  .button-footer {
    width: 100%;
  }

  .onboarding-modal {
    align-items: start;
    overflow-y: auto;
    padding: max(12px, env(safe-area-inset-top)) 12px 12px;
    -webkit-overflow-scrolling: touch;
  }

  .onboarding-dialog {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    border-radius: 22px;
  }

  .modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }

  .onboarding-form {
    grid-template-columns: 1fr;
  }

  .onboarding-actions {
    grid-template-columns: 1fr;
  }

  .upload-card {
    border-left: 0;
    border-top: 1px solid rgba(20, 52, 47, 0.1);
  }

  .footer-grid {
    padding: 28px 0;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 31px;
    height: 31px;
    padding: 7px 6px;
  }

  .nav-cta {
    max-width: 128px;
    text-align: center;
  }

  .nav-contact {
    padding-inline: 10px;
  }

  .hero-actions {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .brand-word {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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