:root {
  --apricot: #f6c89f;
  --apricot-soft: #fde2c8;
  --peach: #fff4e8;
  --paper: #fffcf8;
  --ink: #27312f;
  --ink-soft: #59645f;
  --sage: #789589;
  --sage-pale: #dce9e2;
  --green: #173b35;
  --green-2: #205147;
  --orange: #e98a45;
  --orange-dark: #d97024;
  --line: rgba(39, 49, 47, 0.12);
  --shadow: 0 24px 70px rgba(72, 51, 32, 0.12);
  --shadow-soft: 0 14px 40px rgba(72, 51, 32, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --shell: 1200px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-feature-settings: "palt" 1;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

button,
a,
summary {
  touch-action: manipulation;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--green);
  color: white;
  padding: 10px 16px;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
  background: transparent;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

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

.section-heading.compact {
  margin-bottom: 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}

.center .eyebrow {
  justify-content: center;
}

.eyebrow.light {
  color: #ffd9b7;
}

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

h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.center > p {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.5s cubic-bezier(0.2, 1.5, 0.3, 1);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(233, 138, 69, 0.45);
  outline-offset: 4px;
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(233, 138, 69, 0.28);
  color: white;
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 36px rgba(233, 138, 69, 0.34);
}

.button-ghost {
  border-color: rgba(233, 138, 69, 0.55);
  background: rgba(255, 252, 248, 0.65);
  color: var(--orange-dark);
}

.button-ghost:hover {
  background: white;
  border-color: var(--orange);
}

.button-small {
  min-height: 42px;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.magnet-wrap {
  display: inline-block;
  margin: -14px;
  padding: 14px;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 252, 248, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@supports not (backdrop-filter: blur(1px)) {
  .glass {
    background: rgba(255, 252, 248, 0.96);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 0;
  left: 0;
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
  border-radius: 999px;
  transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 12px 36px rgba(49, 38, 24, 0.1);
}

.header-inner {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 7px 10px 7px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 4px 14px rgba(39, 49, 47, 0.12);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 34%, rgba(246, 200, 159, 0.38), transparent 35%),
    linear-gradient(130deg, #fffaf4 0%, #fff5e9 52%, #fffcf8 100%);
}

.aurora-bg {
  --aurora-1: rgba(246, 200, 159, 0.72);
  --aurora-2: rgba(220, 233, 226, 0.62);
  --aurora-3: rgba(255, 226, 199, 0.76);
  position: relative;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  width: min(48vw, 600px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(82px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}

.aurora-blob-1 {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--aurora-1), transparent 70%);
  animation: auroraFloat1 28s ease-in-out infinite;
}

.aurora-blob-2 {
  top: 18%;
  right: -12%;
  background: radial-gradient(circle, var(--aurora-2), transparent 70%);
  animation: auroraFloat2 34s ease-in-out infinite;
}

.aurora-blob-3 {
  bottom: -18%;
  left: 38%;
  background: radial-gradient(circle, var(--aurora-3), transparent 70%);
  animation: auroraFloat3 25s ease-in-out infinite;
}

@keyframes auroraFloat1 {
  50% { transform: translate(7vw, 6vh) scale(1.1); }
}

@keyframes auroraFloat2 {
  50% { transform: translate(-7vw, 4vh) scale(0.92); }
}

@keyframes auroraFloat3 {
  50% { transform: translate(4vw, -7vh) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 66px;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 94px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
}

.hero-lead {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.demo-note {
  max-width: 550px;
  margin-top: 24px;
  margin-bottom: 0;
  color: #7a817e;
  font-size: 0.76rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(39, 49, 47, 0.1);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 34px;
  display: flex;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fffdfb;
  padding: 0 14px;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ead8c8;
}

.dashboard-frame {
  transform: perspective(1400px) rotateY(-3.5deg) rotateX(1deg);
  transform-origin: center left;
}

.dashboard-frame img {
  width: 100%;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  background: rgba(255, 252, 248, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  padding: 11px 15px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.floating-chip strong {
  color: var(--green);
  font-size: 0.98rem;
}

.chip-goal {
  top: 14%;
  right: -28px;
}

.chip-profit {
  bottom: 13%;
  left: -36px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 36px;
  overflow: hidden;
  margin-top: 8px;
  background: rgba(39, 49, 47, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--orange);
  content: "";
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  55%, 100% { transform: translateY(200%); }
}

.problems {
  background-image:
    radial-gradient(circle at 8% 100%, rgba(246, 200, 159, 0.24), transparent 22%),
    radial-gradient(circle at 94% 6%, rgba(255, 226, 199, 0.33), transparent 24%);
}

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

.problem-card {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(233, 138, 69, 0.17);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.problem-card h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.problem-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(233, 138, 69, 0.25);
  font-size: 2rem;
  font-weight: 900;
}

.icon-disc {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--orange-dark);
  font-size: 1.5rem;
  font-weight: 850;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 0.78fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 62px;
}

.before-panel,
.after-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 28px;
}

.before-panel {
  border: 1px solid rgba(39, 49, 47, 0.1);
  background: rgba(255, 255, 255, 0.6);
}

.before-panel p {
  margin: 0;
  border-radius: 12px;
  background: white;
  padding: 12px 16px;
  font-size: 0.86rem;
  font-weight: 750;
}

.before-panel b {
  color: #9ea5a2;
}

.panel-label {
  width: 100%;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
}

.after-panel {
  background: var(--green);
  color: white;
  text-align: center;
}

.after-panel .panel-label {
  color: #bcd3ca;
}

.after-panel strong {
  font-size: 1.2rem;
}

.change-arrow {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 900;
}

.flow-section {
  overflow: hidden;
}

.marker {
  background-image: linear-gradient(rgba(246, 200, 159, 0.62), rgba(246, 200, 159, 0.62));
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0 38%;
  transition: background-size 0.8s ease;
}

.marker.is-marked {
  background-size: 100% 38%;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 58px 0 70px;
}

.flow-track::before,
.flow-track::after {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
}

.flow-track::before {
  background: rgba(39, 49, 47, 0.1);
}

.flow-track::after {
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--sage));
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-track.is-drawn::after {
  transform: scaleX(1);
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.flow-step span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(233, 138, 69, 0.25);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(83, 62, 42, 0.08);
  color: var(--orange-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.flow-step b {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.flow-step small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.flow-previews {
  display: grid;
  grid-template-columns: 0.84fr 1.22fr 0.84fr;
  gap: 20px;
  align-items: center;
}

.preview-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--shadow-soft);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.preview-card-main {
  box-shadow: var(--shadow);
}

.preview-card figcaption {
  padding: 15px 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

.section-closing {
  margin: 42px auto 0;
  color: var(--ink);
  font-weight: 750;
  text-align: center;
}

.feature-intro {
  padding-bottom: 0;
}

.feature-stack {
  position: relative;
  padding-bottom: 50px;
}

.feature-card {
  position: sticky;
  top: 92px;
  min-height: min(77vh, 760px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.42fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 8vh;
  border: 1px solid rgba(39, 49, 47, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.97);
  box-shadow: 0 36px 90px rgba(71, 50, 30, 0.16);
  padding: 48px;
  transform-origin: top center;
  will-change: transform, filter;
}

.feature-card-2 {
  background: rgba(255, 248, 240, 0.98);
}

.feature-card-3 {
  background: rgba(248, 252, 249, 0.98);
}

.feature-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.1vw, 3.2rem);
}

.feature-copy > p {
  font-size: 1rem;
}

.feature-media {
  max-height: 580px;
}

.feature-media img {
  width: 100%;
  max-height: 545px;
  object-fit: cover;
  object-position: top;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--green);
  content: "✓";
  font-size: 0.7rem;
  line-height: 1;
}

.micro-copy {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--ink);
  font-size: 0.82rem !important;
  font-weight: 700;
}

.import-steps {
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.import-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(120, 149, 137, 0.17);
  border-radius: 12px;
  background: white;
  padding: 10px 13px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.import-steps span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
}

.stack-end {
  height: 24vh;
}

.month-section {
  background-image: radial-gradient(circle at 100% 0%, rgba(246, 200, 159, 0.27), transparent 30%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.comparison-card {
  min-width: 0;
}

.comparison-title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.comparison-title > span {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--orange-dark);
  font-weight: 900;
}

.comparison-title h3,
.comparison-title p {
  margin: 0;
}

.comparison-title h3 {
  font-size: 1.25rem;
}

.comparison-title p {
  font-size: 0.8rem;
}

.compact-frame {
  height: 510px;
}

.compact-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.report-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.report-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.report-points {
  display: grid;
  gap: 10px;
  margin: 34px 0;
}

.report-points p {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 0.85rem;
}

.report-points b {
  color: var(--orange-dark);
}

.report-visual {
  position: relative;
  min-height: 630px;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 35%;
  overflow: hidden;
  border: 8px solid #202623;
  border-radius: 42px;
  background: white;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 32%;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #202623;
  content: "";
}

.report-sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: 73%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}

.data-bridge {
  position: absolute;
  z-index: 4;
  top: 53%;
  left: 31%;
  width: 88px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(233, 138, 69, 0.28);
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
}

.feature-chip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 56px;
}

.feature-chip-grid span {
  display: grid;
  min-height: 84px;
  place-items: center;
  border: 1px solid rgba(233, 138, 69, 0.16);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.82);
  padding: 14px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.role-card {
  border: 1px solid rgba(39, 49, 47, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 42px;
}

.role-fit {
  border-color: rgba(120, 149, 137, 0.25);
  background: linear-gradient(150deg, rgba(244, 250, 246, 0.96), rgba(255, 252, 248, 0.94));
}

.card-kicker {
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.role-pair {
  display: grid;
  gap: 12px;
}

.role-pair > div {
  display: grid;
  gap: 5px;
  border-radius: 14px;
  background: var(--peach);
  padding: 19px;
}

.role-pair > div:last-child {
  background: var(--green);
  color: white;
}

.role-pair span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.role-pair > div:last-child span {
  color: #ffd0a8;
}

.boundary-note {
  margin: 18px 0 0;
  font-size: 0.78rem;
}

.faq {
  max-width: 900px;
  margin: 100px auto 0;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  cursor: pointer;
  padding: 24px 54px 24px 0;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--orange);
  content: "";
  transition: transform 0.25s ease;
}

.faq summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq details p {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.contact-section {
  --aurora-1: rgba(246, 200, 159, 0.72);
  --aurora-2: rgba(120, 149, 137, 0.42);
  padding: 120px 0;
  background: var(--peach);
}

.contact-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.58fr;
  gap: 66px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  padding: 64px;
}

.glass-dark {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(140deg, rgba(23, 59, 53, 0.98), rgba(25, 77, 65, 0.96));
  box-shadow: 0 36px 90px rgba(23, 59, 53, 0.24);
  color: white;
}

.contact-logo {
  margin-bottom: 24px;
  border-radius: 23px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.contact-copy > p {
  max-width: 650px;
  color: #d5e2dd;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.contact-points li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 13px;
  color: #e7f0ec;
  font-size: 0.76rem;
  font-weight: 750;
}

.button-contact {
  min-width: 290px;
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  color: white;
}

.qr-card {
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  padding: 28px;
  color: var(--ink);
  text-align: center;
}

.qr-card img {
  width: min(100%, 330px);
  margin-inline: auto;
}

.qr-card h3 {
  margin: 20px 0 4px;
  font-size: 1.08rem;
}

.qr-card p {
  margin-bottom: 0;
  font-size: 0.76rem;
}

.site-footer {
  background: #122d29;
  color: white;
}

.footer-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
  color: #b9cbc5;
  font-size: 0.78rem;
}

.footer-inner small {
  justify-self: end;
}

.motion-enabled.js .reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

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

.stagger-group .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-group .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }

  .feature-card {
    gap: 34px;
    padding: 38px;
  }

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

  .report-grid {
    gap: 42px;
  }

  .contact-panel {
    gap: 38px;
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .section {
    padding: 92px 0;
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 144px;
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero-visual {
    width: min(94%, 760px);
    margin-inline: auto;
  }

  .dashboard-frame {
    transform: none;
  }

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

  .problem-card {
    min-height: 0;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .change-arrow {
    transform: rotate(90deg);
  }

  .flow-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }

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

  .flow-previews {
    grid-template-columns: 1fr;
  }

  .preview-card {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .feature-card {
    position: relative;
    top: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    margin-bottom: 28px;
    padding: 36px;
    transform: none !important;
    filter: none !important;
  }

  .stack-end {
    display: none;
  }

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

  .compact-frame {
    height: min(68vw, 570px);
  }

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

  .report-copy {
    max-width: 700px;
  }

  .report-visual {
    width: min(100%, 760px);
    min-height: 620px;
    margin-inline: auto;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 44px;
  }

  .qr-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .header-inner {
    min-height: 56px;
    padding: 5px 7px 5px 10px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .button-small {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 0.75rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9.4vw, 3.1rem);
  }

  .hero-inner {
    gap: 42px;
    padding-top: 122px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .hero-actions .magnet-wrap {
    width: 100%;
  }

  .hero-actions .magnet-wrap {
    margin: 0;
    padding: 0;
  }

  .chip-goal {
    top: -22px;
    right: -4px;
  }

  .chip-profit {
    bottom: -28px;
    left: -5px;
  }

  .floating-chip {
    padding: 8px 11px;
    font-size: 0.62rem;
  }

  .floating-chip strong {
    font-size: 0.82rem;
  }

  .scroll-cue {
    display: none;
  }

  .problem-card {
    padding: 26px;
  }

  .before-panel,
  .after-panel {
    padding: 22px;
  }

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

  .flow-step span {
    width: 70px;
    height: 70px;
  }

  .feature-card {
    border-radius: 22px;
    padding: 26px;
  }

  .feature-copy h3 {
    font-size: 2rem;
  }

  .feature-media img {
    max-height: none;
  }

  .compact-frame {
    height: 78vw;
  }

  .report-visual {
    min-height: 112vw;
  }

  .phone-frame {
    width: 44%;
    border-width: 5px;
    border-radius: 28px;
  }

  .report-sheet {
    width: 78%;
  }

  .data-bridge {
    left: 34%;
    width: 58px;
    height: 34px;
    font-size: 1.3rem;
  }

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

  .role-card {
    border-radius: 22px;
    padding: 28px;
  }

  .faq {
    margin-top: 72px;
  }

  .contact-section {
    padding: 74px 0;
  }

  .contact-panel {
    width: calc(100% - 20px);
    border-radius: 26px;
    padding: 30px 22px;
  }

  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .contact-logo {
    width: 72px;
    height: 72px;
  }

  .contact-points {
    display: grid;
  }

  .button-contact {
    width: 100%;
    min-width: 0;
  }

  .qr-card {
    padding: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 0;
  }

  .footer-inner small {
    justify-self: start;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  color: inherit;
  text-underline-offset: 4px;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
  padding: 72px 0 110px;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.96);
}

.legal-header .shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-back {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-shell {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.legal-card {
  border: 1px solid rgba(232, 95, 0, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 6vw, 64px);
}

.legal-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 6vw, 3.8rem);
}

.legal-card h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.9;
}

.legal-card ul {
  padding-left: 1.3em;
}

.legal-updated {
  margin-bottom: 36px;
  font-size: 0.84rem;
}

.not-found {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found .button {
  margin-top: 18px;
}

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

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

  .aurora-blob,
  .scroll-cue,
  .floating-chip {
    animation: none !important;
  }

  .feature-card,
  .magnet-button,
  .hero-copy,
  .hero-visual {
    transform: none !important;
    filter: none !important;
  }

  .marker {
    background-size: 100% 38%;
  }

  .flow-track::after {
    transform: scaleX(1);
  }
}

@media print {
  .site-header,
  .scroll-cue,
  .aurora-blob {
    display: none !important;
  }

  .section,
  .contact-section {
    padding: 50px 0;
  }

  .feature-card {
    position: relative;
    top: auto;
    min-height: 0;
    break-inside: avoid;
    transform: none !important;
    filter: none !important;
  }
}

/* --------------------------------------------------------------------------
   R8.8 v2 — the approved section-preview is the visual source of truth.
   Warm editorial spacing, fine orange rules and complete feature sections.
   -------------------------------------------------------------------------- */

:root {
  --paper: #fffaf3;
  --peach: #fff3e5;
  --ink: #252827;
  --ink-soft: #515755;
  --orange: #f87819;
  --orange-dark: #e85f00;
  --green: #153e36;
  --green-2: #1a5146;
  --line: rgba(67, 53, 39, 0.13);
  --shadow: 0 18px 54px rgba(73, 50, 24, 0.12);
  --shadow-soft: 0 10px 32px rgba(73, 50, 24, 0.075);
  --shell: 1380px;
}

body {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(232, 95, 0, 0.035) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}

.site-header {
  top: 0;
  width: 100%;
  max-width: none;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(255, 250, 243, 0.91);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(62, 43, 25, 0.07);
}

.header-inner {
  width: min(calc(100% - 72px), 1460px);
  min-height: 84px;
  padding: 8px 0;
}

.brand {
  font-size: 1.72rem;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.desktop-nav {
  gap: 38px;
}

.desktop-nav a {
  color: var(--ink);
  font-size: 0.94rem;
}

.button {
  min-height: 58px;
  border-radius: 10px;
  padding-inline: 32px;
}

.button-small {
  min-height: 50px;
  background: linear-gradient(135deg, #ff8a25, #f36b0b);
  box-shadow: 0 9px 22px rgba(232, 95, 0, 0.22);
}

.hero {
  min-height: 920px;
  background:
    radial-gradient(ellipse at 20% 48%, rgba(255, 199, 142, 0.28) 0 22%, transparent 22.5%),
    radial-gradient(ellipse at -6% 55%, transparent 0 34%, rgba(255, 199, 142, 0.2) 34.5% 42%, transparent 42.5%),
    linear-gradient(103deg, #fff8ee 0%, #fffaf5 43%, #fffdf9 100%);
}

.hero::after {
  position: absolute;
  top: -29%;
  left: -18%;
  width: 63vw;
  height: 115%;
  border: 100px solid rgba(255, 209, 165, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-18deg);
}

.hero .aurora-blob {
  display: none;
}

.hero-inner {
  min-height: 920px;
  grid-template-columns: minmax(380px, 0.82fr) minmax(620px, 1.32fr);
  gap: 76px;
  padding-top: 132px;
  padding-bottom: 68px;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(3.4rem, 5.2vw, 5.25rem);
  line-height: 1.28;
}

.hero-lead {
  font-size: 1.42rem;
}

.hero .eyebrow {
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  width: min(100%, 430px);
  gap: 13px;
}

.hero-actions .button,
.hero-actions .magnet-wrap {
  width: 100%;
}

.hero-actions .magnet-wrap {
  margin: 0;
  padding: 0;
}

.hero .button-primary {
  font-size: 1.1rem;
}

.dashboard-frame {
  border-radius: 20px;
  transform: none;
  box-shadow: 0 24px 68px rgba(62, 43, 25, 0.13);
}

.floating-chip {
  display: none;
}

.section {
  padding: 126px 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 58px;
}

.section-heading h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
}

.section-heading.center > p {
  max-width: 900px;
}

.eyebrow {
  color: var(--orange-dark);
  font-size: 0.94rem;
}

.problems {
  background: linear-gradient(180deg, #fff8ee, #fffaf5);
}

.problem-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.problem-card {
  min-height: 234px;
  border-color: rgba(232, 95, 0, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
  padding: 26px 18px 24px;
  text-align: center;
}

.problem-card h3 {
  font-size: 1.03rem;
  line-height: 1.65;
}

.problem-number {
  top: 14px;
  right: 15px;
  font-size: 1.25rem;
}

.icon-disc {
  width: 86px;
  height: 86px;
  margin: 4px auto 22px;
  background: #fff1e3;
}

.before-after {
  grid-template-columns: 1.05fr 54px 1.05fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 95, 0, 0.23);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.before-panel,
.after-panel {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  padding: 42px 28px;
}

.before-panel p {
  border: 1px solid rgba(67, 53, 39, 0.1);
  box-shadow: 0 5px 16px rgba(73, 50, 24, 0.05);
}

.after-panel {
  background: linear-gradient(145deg, rgba(255, 248, 238, 0.75), #fff1e1);
  color: var(--ink);
}

.after-panel .panel-label {
  color: var(--orange-dark);
}

.change-arrow {
  background: linear-gradient(90deg, transparent, rgba(248, 120, 25, 0.12), transparent);
}

.flow-section {
  background: #fffdf9;
}

.flow-track {
  gap: 20px;
}

.flow-track::before,
.flow-track::after {
  top: 82px;
}

.flow-step {
  min-height: 180px;
  align-content: center;
  border: 1px solid rgba(232, 95, 0, 0.25);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  padding: 19px 10px 16px;
}

.flow-step span {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border: 0;
  background: #fff0df;
  box-shadow: none;
}

.flow-previews {
  gap: 28px;
}

.preview-card {
  border-radius: 16px;
}

.scene-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #fff8ef;
}

.scene-photo,
.scene-shade {
  position: absolute;
  inset: 0;
}

.scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scene-shade {
  background: linear-gradient(90deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 249, 241, 0.92) 30%, rgba(255, 249, 241, 0.38) 52%, transparent 70%);
}

.scene-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-block: 120px;
}

.scene-copy {
  width: min(47%, 660px);
}

.scene-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 4.5vw, 4.65rem);
}

.scene-copy > p {
  max-width: 600px;
  color: #454a48;
  font-size: 1.08rem;
}

.scene-note {
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr;
  gap: 10px 12px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid rgba(232, 95, 0, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 36px rgba(73, 50, 24, 0.08);
  padding: 18px 20px;
}

.scene-note span {
  border-radius: 999px;
  background: #ffead6;
  padding: 5px 9px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.scene-note b {
  font-size: 0.84rem;
}

.scene-note i {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.feature-intro {
  padding-bottom: 52px;
  background: #fff7ec;
}

.feature-stack {
  padding-bottom: 120px;
}

.feature-card {
  position: relative;
  top: auto;
  min-height: 680px;
  margin-bottom: 92px;
  border-color: rgba(232, 95, 0, 0.14);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 24px 70px rgba(73, 50, 24, 0.11);
  transform: none !important;
  filter: none !important;
}

.feature-card-2,
.feature-card-3 {
  background: rgba(255, 253, 249, 0.97);
}

.feature-card:last-of-type {
  margin-bottom: 0;
}

.stack-end {
  display: none;
}

.feature-media {
  border-radius: 15px;
}

.month-section,
.report-section,
.role-section {
  background-color: #fffaf3;
}

.comparison-card,
.role-card,
.faq details {
  border-radius: 17px;
}

.feature-chip-grid span {
  border-color: rgba(232, 95, 0, 0.18);
  border-radius: 14px;
  background: #fffdfa;
}

.contact-section {
  background: #fff8ee;
}

.contact-panel {
  border-radius: 28px;
}

.glass-dark {
  background: linear-gradient(140deg, #123d35, #174b40);
}

.button-contact {
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8625, #f3670d);
}

@media (max-width: 1180px) {
  .header-inner {
    width: min(calc(100% - 40px), 1460px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 0;
    width: 100%;
  }

  .header-inner {
    width: min(calc(100% - 30px), 1460px);
    min-height: 70px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 142px;
    padding-bottom: 96px;
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .scene-section {
    min-height: 840px;
    align-items: end;
  }

  .scene-photo img {
    object-position: 64% center;
  }

  .scene-shade {
    background: linear-gradient(0deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 249, 241, 0.9) 42%, rgba(255, 249, 241, 0.05) 76%);
  }

  .scene-inner {
    align-items: end;
    padding-top: 320px;
    padding-bottom: 70px;
  }

  .scene-copy {
    width: min(100%, 700px);
  }

  .feature-card {
    min-height: 0;
    margin-bottom: 34px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 62px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .button-small {
    min-height: 40px;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.4vw, 3.8rem);
  }

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

  .problem-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    text-align: left;
  }

  .problem-card .icon-disc {
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .problem-card h3 {
    font-size: 0.97rem;
  }

  .problem-number {
    display: none;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-panel,
  .after-panel {
    min-height: 0;
  }

  .change-arrow {
    min-height: 48px;
  }

  .scene-section {
    min-height: 780px;
  }

  .scene-photo img {
    object-position: 67% center;
  }

  .scene-inner {
    padding-top: 330px;
    padding-bottom: 54px;
  }

  .scene-copy h2 {
    font-size: 2.35rem;
  }

  .scene-note {
    grid-template-columns: auto 1fr;
  }

  .scene-note i {
    display: none;
  }

  .feature-card {
    border-radius: 17px;
  }
}
