/* The Rehoboth public landing page styles — v2 premium */
:root {
  --canvas: #f6f4ef;
  --paper: #ffffff;
  --paper-soft: #f1ece4;
  --ink: #141d1c;
  --ink-soft: #4a6260;
  --forest: #1a5244;
  --forest-deep: #0e3227;
  --forest-mid: #2b7863;
  --forest-light: #3d9078;
  --leaf: #c8e7a4;
  --leaf-soft: #e8f5d3;
  --sun: #e8a956;
  --sun-soft: #faefd8;
  --rose: #d67d63;
  --line: #dae0d6;
  --line-strong: #c5d0c2;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 72px rgba(14,50,39,.13), 0 6px 20px rgba(14,50,39,.08);
  --shadow-sm: 0 8px 28px rgba(14,50,39,.10), 0 2px 8px rgba(14,50,39,.06);
  --shadow-lg: 0 48px 120px rgba(14,50,39,.18), 0 16px 40px rgba(14,50,39,.10);
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  background: rgba(246,244,239,.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: rgba(20,50,44,.10); background: rgba(246,244,239,.95); }
.nav {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.03em; font-size: 1.14rem; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--forest-mid) 0%, var(--forest) 60%, var(--forest-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,50,39,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.brand-mark svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; color: #4a6260; font-weight: 600; font-size: .9rem; }
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--forest); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.link-button { padding: 10px 14px; font-weight: 700; font-size: .9rem; color: var(--forest); transition: color .18s ease; }
.link-button:hover { color: var(--forest-deep); }
.button {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: .91rem;
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(155deg, var(--forest-mid) 0%, var(--forest) 50%, var(--forest-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(14,50,39,.28), inset 0 1px 0 rgba(255,255,255,.14);
}
.button-primary:hover {
  box-shadow: 0 16px 40px rgba(14,50,39,.34), 0 4px 12px rgba(14,50,39,.18), inset 0 1px 0 rgba(255,255,255,.14);
}
.button-secondary {
  color: var(--forest);
  background: rgba(255,255,255,.9);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.button-secondary:hover { border-color: var(--forest); box-shadow: 0 10px 28px rgba(14,50,39,.12); }
.button-light { background: #fff; color: var(--forest-deep); box-shadow: 0 6px 20px rgba(255,255,255,.18); }
.button-light:hover { background: rgba(255,255,255,.92); }
.menu-button { display: none; border: 0; color: var(--forest); background: transparent; padding: 8px; }
.menu-button svg { width: 25px; height: 25px; }
.mobile-menu { display: none; padding: 14px 0 4px; border-top: 1px solid rgba(20,50,44,.09); }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 13px 4px; font-weight: 700; color: var(--ink-soft); transition: color .18s ease; }
.mobile-menu a:hover { color: var(--forest); }
.mobile-menu .button { margin-top: 10px; }

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 45%, var(--forest-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--forest); background: var(--leaf-soft); border: 1px solid rgba(26,82,68,.12);
  border-radius: 999px; padding: 7px 14px; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 800;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest); }
.section { padding: 112px 0; }
.section-heading { max-width: 660px; }
.section-heading.center { margin: 0 auto; text-align: center; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Fraunces, Georgia, serif; letter-spacing: -.055em; line-height: 1.01; }
h1 { margin: 22px 0; max-width: 740px; font-size: clamp(3.1rem, 6.4vw, 5.8rem); }
h2 { margin: 16px 0; font-size: clamp(2.3rem, 4.2vw, 4rem); }
h3 { margin-bottom: 9px; letter-spacing: -.022em; font-size: 1.13rem; }
.section-copy, .hero-copy { color: var(--ink-soft); font-size: 1.06rem; max-width: 620px; line-height: 1.65; }
.section-heading.center .section-copy { margin-left: auto; margin-right: auto; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse 64% 72% at 8% 36%, rgba(200,231,164,.55) 0%, transparent 70%),
    radial-gradient(ellipse 52% 44% at 92% 16%, rgba(232,169,86,.17) 0%, transparent 68%),
    radial-gradient(ellipse 72% 52% at 52% 108%, rgba(26,82,68,.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(26,82,68,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,82,68,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent 75%);
  pointer-events: none;
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: .98fr 1.02fr;
  align-items: center; gap: clamp(48px, 6vw, 96px);
}
.hero-copy { font-size: 1.14rem; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 14px 20px; padding: 0; margin: 28px 0 0; list-style: none; color: #5a6e6a; font-size: .85rem; font-weight: 600; }
.hero-note li { display: inline-flex; align-items: center; gap: 7px; }
.check { width: 18px; height: 18px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--leaf-soft); border: 1px solid var(--leaf); color: var(--forest); font-size: .7rem; font-weight: 900; }

/* Product mockup */
.product-wrap { position: relative; }
.product-card {
  overflow: hidden; position: relative;
  background: #fff;
  border: 1px solid #d3dcd0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-mid), var(--forest));
  z-index: 2;
}
.product-top { height: 52px; padding: 0 20px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #e5ece3; background: #f7faf6; }
.window-dot { width: 10px; height: 10px; border-radius: 50%; background: #dde5db; }
.window-dot.dot-red { background: #ff5f57; }
.window-dot.dot-yellow { background: #febc2e; }
.window-dot.dot-green { background: #28c840; }
.window-label { margin-left: 8px; font-size: .71rem; font-weight: 700; color: #8a9892; letter-spacing: .01em; }
.product-shell { display: grid; grid-template-columns: 148px 1fr; min-height: 400px; }
.product-side { padding: 18px 12px; background: #f3f7f1; border-right: 1px solid #e5ece3; }
.mini-brand { display: flex; align-items: center; gap: 8px; margin: 0 8px 24px; color: #2d5a50; font-weight: 800; font-size: .75rem; }
.mini-mark { width: 21px; height: 21px; border-radius: 7px; background: linear-gradient(150deg, var(--forest-mid), var(--forest)); }
.side-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; color: #6d7f79; font-size: .69rem; font-weight: 700; border-radius: 10px; cursor: default; }
.side-item.active { color: var(--forest); background: rgba(200,231,164,.45); }
.side-icon { width: 15px; display: inline-grid; place-items: center; }
.product-main { padding: 28px 26px; overflow: hidden; }
.product-main-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.product-main-top h3 { margin: 0; font-size: 1.22rem; color: #1f4038; letter-spacing: -.03em; }
.product-main-top p { margin: 4px 0 0; color: #7e8f89; font-size: .72rem; }
.avatar-stack { display: flex; padding: 0 6px; }
.avatar { width: 26px; height: 26px; margin-left: -7px; border: 2px solid #fff; border-radius: 50%; background: #e8d4b1; }
.avatar:nth-child(2) { background: #cde0b4; }
.avatar:nth-child(3) { background: #b8d6de; }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.overview-box { padding: 13px; border-radius: 14px; border: 1px solid #e2e9df; background: #fff; }
.overview-box span { display: block; color: #7e8f89; font-size: .64rem; font-weight: 700; }
.overview-box strong { display: block; margin-top: 8px; font-size: 1.32rem; letter-spacing: -.07em; color: #1f4038; }
.overview-box em { display: block; margin-top: 5px; font-size: .62rem; font-style: normal; color: #4d8a52; font-weight: 700; }
.panel-row { display: grid; grid-template-columns: 1.28fr .72fr; gap: 12px; margin-top: 14px; }
.chart-card, .schedule-card { padding: 15px; border: 1px solid #e2e9df; border-radius: 13px; background: #fff; }
.panel-title { display: flex; align-items: center; justify-content: space-between; font-size: .68rem; font-weight: 800; color: #3e6059; }
.panel-title span { color: #96a4a0; font-weight: 600; }
.chart { height: 130px; padding-top: 18px; display: flex; align-items: end; gap: 8px; }
.bar { width: 100%; min-width: 6px; border-radius: 5px 5px 2px 2px; background: #d0e9be; }
.bar.accent { background: linear-gradient(180deg, var(--forest-mid), var(--forest)); }
.event { display: grid; grid-template-columns: 6px 1fr; gap: 8px; align-items: center; margin-top: 14px; }
.event-mark { width: 6px; height: 30px; border-radius: 99px; background: var(--sun); }
.event-mark.green { background: linear-gradient(180deg, var(--forest-mid), var(--forest)); }
.event strong { display: block; font-size: .67rem; color: #3a5850; }
.event small { display: block; margin-top: 2px; font-size: .6rem; color: #8e9d98; }
.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 40px rgba(14,50,39,.18), 0 4px 12px rgba(14,50,39,.10);
  font-size: .71rem; font-weight: 800; color: #2d5248;
}
.floating-card.one { left: -28px; bottom: 40px; }
.floating-card.two { right: -24px; top: 92px; }
.floating-icon { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: var(--sun-soft); font-size: .9rem; }
.floating-card.two .floating-icon { background: var(--leaf-soft); }

/* Highlight strip */
.value-strip { position: relative; z-index: 2; margin-top: -30px; }
.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; overflow: hidden;
  border: 1px solid #ccd8c9;
  border-radius: 22px;
  background: #c4d4c0;
  box-shadow: var(--shadow-sm);
}
.value-item { padding: 24px 26px; background: rgba(255,255,255,.98); transition: background .2s ease; }
.value-item:hover { background: #fff; }
.value-item strong { display: block; font-size: .93rem; color: #28524a; letter-spacing: -.02em; }
.value-item span { display: block; margin-top: 5px; color: #6e8580; font-size: .77rem; line-height: 1.52; }

/* Feature section */
.soft-section { background: linear-gradient(180deg, #eeebe3 0%, #e9e6dd 100%); border-top: 1px solid #e2dfd8; border-bottom: 1px solid #e2dfd8; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.feature-card {
  position: relative; overflow: hidden;
  min-height: 252px; padding: 26px;
  background: #fff;
  border: 1px solid #e0e8de;
  border-radius: 22px;
  transition: transform .24s cubic-bezier(.22,1,.36,1), box-shadow .24s ease, border-color .24s ease;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-mid), var(--forest));
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transition: opacity .24s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: #c8d8c5; box-shadow: var(--shadow); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--leaf-soft), var(--leaf));
  color: var(--forest);
  box-shadow: 0 4px 10px rgba(26,82,68,.12);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #fef5e0, var(--sun-soft)); color: #9a5520; }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #e8f2fd, #d6e8fb); color: #3e6896; }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #faeae4, #f5dcd4); color: #a55844; }
.feature-card h3 { margin: 18px 0 9px; letter-spacing: -.025em; font-size: 1.1rem; }
.feature-card p { margin: 0; color: #607370; font-size: .9rem; line-height: 1.58; }

/* Workflow */
.workflow { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(48px, 7vw, 104px); }
.workflow-list { display: grid; gap: 14px; margin-top: 28px; }
.workflow-item {
  padding: 18px;
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  border: 1px solid var(--line); border-radius: 20px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.workflow-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.workflow-number {
  width: 40px; height: 40px;
  display: grid; place-items: center; border-radius: 13px;
  color: var(--forest); background: var(--leaf-soft);
  border: 1px solid var(--leaf);
  font-weight: 800; font-size: .92rem;
}
.workflow-item h3 { margin: 0 0 5px; font-size: .99rem; letter-spacing: -.02em; }
.workflow-item p { margin: 0; color: #627470; font-size: .88rem; line-height: 1.58; }
.workflow-visual {
  padding: 24px; position: relative; overflow: hidden; min-height: 480px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--forest-mid) 0%, var(--forest) 45%, var(--forest-deep) 100%);
  box-shadow: var(--shadow-lg);
}
.workflow-visual::before {
  content: "";
  position: absolute;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,231,164,.20), transparent 66%);
  top: -200px; right: -160px;
  pointer-events: none;
}
.workflow-visual::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,231,164,.10), transparent 70%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}
.workflow-panel {
  position: relative; z-index: 1;
  padding: 24px; border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(14,50,39,.22);
}
.workflow-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid #e8ece5; }
.workflow-panel-head strong { font-size: .91rem; color: #2a5246; }
.workflow-panel-head span { padding: 5px 10px; border-radius: 999px; background: var(--leaf-soft); color: var(--forest); font-size: .62rem; font-weight: 800; border: 1px solid var(--leaf); }
.member-row { display: grid; grid-template-columns: 36px 1fr auto; gap: 10px; align-items: center; padding: 14px 0; border-bottom: 1px solid #edf1ea; }
.member-row:last-child { border-bottom: 0; }
.member-photo { width: 36px; height: 36px; border-radius: 12px; background: #f0d4bd; }
.member-row:nth-child(3) .member-photo { background: #cfe0b8; }
.member-row:nth-child(4) .member-photo { background: #bedad4; }
.member-row strong { display: block; font-size: .77rem; color: #385e54; }
.member-row small { display: block; margin-top: 2px; color: #8a9894; font-size: .65rem; }
.member-row em { color: #4d8259; font-size: .63rem; font-style: normal; font-weight: 800; }
.workflow-caption {
  position: absolute; z-index: 1;
  bottom: 28px; left: 28px; right: 28px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}
.workflow-caption strong { display: block; font-family: Fraunces, Georgia, serif; font-size: 1.52rem; letter-spacing: -.04em; }
.workflow-caption p { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: .83rem; line-height: 1.55; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg, #fff 0%, #f9fbf8 100%); border-top: 1px solid #e8ece4; border-bottom: 1px solid #e8ece4; }
.billing-toggle {
  display: inline-flex; align-items: center; gap: 3px; margin-top: 28px;
  padding: 5px;
  background: #edf1ea;
  border: 1px solid #dde5da;
  border-radius: 999px;
}
.billing-toggle button { padding: 9px 18px; border: 0; border-radius: 999px; background: transparent; color: #5e7570; cursor: pointer; font-size: .78rem; font-weight: 800; transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.billing-toggle button.active { background: #fff; color: var(--forest); box-shadow: 0 3px 10px rgba(26,82,68,.12); }
.billing-toggle button:disabled { opacity: .4; cursor: not-allowed; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; align-items: stretch; }
.plan-card {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 440px; padding: 30px;
  background: #fff;
  border: 1px solid #dce6d8;
  border-radius: 24px;
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured {
  border-color: transparent;
  box-shadow: 0 0 0 1.5px var(--forest), 0 28px 72px rgba(26,82,68,.18), 0 8px 24px rgba(26,82,68,.10);
}
.plan-card.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-mid), var(--forest));
  border-radius: 24px 24px 0 0;
}
.plan-card.featured:hover { transform: translateY(-5px); box-shadow: 0 0 0 1.5px var(--forest), 0 36px 90px rgba(26,82,68,.22), 0 12px 32px rgba(26,82,68,.12); }
.plan-badge {
  position: absolute; top: 0; right: 22px;
  transform: translateY(-50%);
  padding: 6px 12px; border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest));
  font-size: .65rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(26,82,68,.28);
}
.plan-name { font-size: 1.08rem; font-weight: 800; color: #275248; letter-spacing: -.02em; }
.plan-description { min-height: 44px; margin: 10px 0 20px; color: #6e8480; font-size: .85rem; line-height: 1.58; }
.plan-price { display: flex; align-items: baseline; gap: 5px; min-height: 54px; color: #182e2a; }
.plan-price strong { letter-spacing: -.08em; font-size: 2.5rem; font-family: Fraunces, Georgia, serif; }
.plan-price span { color: #7d8f8a; font-size: .78rem; font-weight: 700; }
.plan-note { min-height: 24px; margin: 6px 0 20px; color: #8a9893; font-size: .72rem; }
.plan-divider { height: 1px; background: #edf1ea; margin: 0 0 20px; }
.plan-features { display: grid; gap: 11px; padding: 0; margin: 0 0 28px; list-style: none; color: #567068; font-size: .84rem; }
.plan-features li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.plan-check {
  width: 18px; height: 18px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--leaf-soft); border: 1px solid var(--leaf);
  color: var(--forest); font-size: .6rem; font-weight: 900;
}
.plan-card .button { width: 100%; margin-top: auto; }
.pricing-state {
  grid-column: 1 / -1; min-height: 260px;
  display: grid; place-items: center; text-align: center;
  padding: 32px; border: 1.5px dashed #ccd8c8; border-radius: 24px;
  background: #f9fbf8; color: #5e7570;
}
.pricing-state strong { display: block; color: #275248; font-size: 1.08rem; margin-bottom: 8px; }
.pricing-state p { max-width: 440px; margin: 0 auto; font-size: .9rem; line-height: 1.6; }
.loading-dots { display: inline-flex; gap: 6px; margin-bottom: 16px; }
.loading-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--forest); animation: pricePulse 1.2s infinite ease-in-out; }
.loading-dots i:nth-child(2) { animation-delay: .15s; }
.loading-dots i:nth-child(3) { animation-delay: .30s; }
@keyframes pricePulse { 0%, 100% { opacity: .2; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
.pricing-footnote { margin: 22px auto 0; max-width: 680px; color: #7a8f88; font-size: .79rem; text-align: center; line-height: 1.6; }
.pricing-region { margin: 0 auto; max-width: 680px; color: #8a9e96; font-size: .73rem; text-align: center; display: inline-block; width: 100%; padding: 6px 0 0; letter-spacing: .02em; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(48px, 7vw, 104px); align-items: start; }
.faq-list { display: grid; gap: 10px; }
details { background: #fff; border: 1px solid #dce5d9; border-radius: 18px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 20px 52px 20px 22px;
  color: #2d5248; font-weight: 800; font-size: .93rem;
  transition: color .18s ease;
}
summary:hover { color: var(--forest); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  position: absolute; right: 20px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--forest); border-bottom: 2px solid var(--forest);
  transform: translateY(-66%) rotate(45deg);
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
details[open] summary::after { transform: translateY(-33%) rotate(-135deg); }
details p { padding: 0 22px 20px; margin: 0; color: #607570; font-size: .9rem; line-height: 1.65; animation: detailFade .22s ease; }
@keyframes detailFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* CTA */
.cta { padding: 0 0 112px; }
.cta-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 36px; padding: 56px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(140deg, var(--forest-mid) 0%, var(--forest) 40%, var(--forest-deep) 100%);
  box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,231,164,.16), transparent 68%);
  top: -200px; right: -140px;
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,231,164,.10), transparent 70%);
  bottom: -120px; left: 40px;
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { margin: 0 0 12px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.cta-card p { margin: 0; max-width: 580px; color: rgba(255,255,255,.74); font-size: 1.02rem; line-height: 1.62; }
.cta-card .button { white-space: nowrap; flex-shrink: 0; }

/* Footer */
footer { padding: 60px 0 28px; border-top: 1px solid #dce0d8; background: #f0ede7; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .7fr); gap: 48px; }
.footer-description { margin: 14px 0 0; max-width: 380px; color: #637870; font-size: .88rem; line-height: 1.64; }
.footer-heading { margin: 2px 0 14px; color: #384f49; font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; color: #6a7e78; font-size: .86rem; }
.footer-links a { transition: color .18s ease; }
.footer-links a:hover { color: var(--forest); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 44px; margin-top: 44px; border-top: 1px solid #d4d8d0; color: #86928d; font-size: .76rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { transition: color .18s ease; }
.footer-bottom-links a:hover { color: var(--forest); }

/* Responsive */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .hero { padding-top: 56px; }
  .hero-layout, .workflow, .faq-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 56px; }
  .product-wrap { max-width: 660px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card .button { justify-self: start; }
}
@media (max-width: 630px) {
  :root { --container: min(100% - 28px, 1160px); }
  .site-header { padding: 9px 0; }
  .nav-actions .link-button, .nav-actions .button-primary { display: none; }
  .hero { padding: 44px 0 72px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .product-shell { grid-template-columns: 0 1fr; }
  .product-side { display: none; }
  .product-main { padding: 20px 16px; }
  .overview-grid { gap: 7px; }
  .overview-box { padding: 10px; }
  .overview-box strong { font-size: 1.1rem; }
  .panel-row { grid-template-columns: 1fr; }
  .chart-card { display: none; }
  .floating-card.one { left: -6px; bottom: -16px; }
  .floating-card.two { display: none; }
  .value-strip { margin-top: -16px; }
  .value-item { padding: 18px 16px; }
  .section { padding: 80px 0; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .workflow-visual { min-height: 420px; padding: 16px; }
  .workflow-caption { left: 18px; right: 18px; bottom: 18px; }
  .cta { padding-bottom: 80px; }
  .cta-card { padding: 34px 26px; }
  .cta-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 32px; padding-top: 28px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 8px 14px; }
}
