:root {
  --bg: #f2eee7;
  --bg-2: #f8f5ef;
  --paper: rgba(255,255,255,0.8);
  --paper-strong: #fffdf8;
  --ink: #223127;
  --muted: #627066;
  --line: rgba(31, 53, 40, 0.12);
  --accent: #1b9f8a;
  --accent-dark: #167766;
  --gold: #efb11d;
  --forest: #314d3e;
  --plum: #63528a;
  --navy: #16223f;
  --shadow: 0 20px 60px rgba(40, 56, 49, 0.12);
  --radius: 28px;
  --radius-lg: 40px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(30,159,138,0.14), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(239,177,29,0.12), transparent 20%),
    linear-gradient(180deg, #f3efe8 0%, #f8f5ef 40%, #f1ede5 100%);
  color: var(--ink);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 30%, #2c6655 0 2px, transparent 3px),
    radial-gradient(circle at 78% 12%, #efb11d 0 2px, transparent 3px),
    radial-gradient(circle at 60% 70%, #695a8f 0 1.8px, transparent 3px),
    radial-gradient(circle at 12% 85%, #1b9f8a 0 1.5px, transparent 3px);
  background-size: 420px 420px;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(248, 244, 236, 0.72);
  border-bottom: 1px solid rgba(34, 49, 39, 0.08);
}
.nav-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #21372b, #335542);
  position: relative;
  box-shadow: 0 12px 30px rgba(28, 44, 34, 0.22);
  flex: 0 0 54px;
}
.brand-book {
  position: absolute;
  inset: 12px 13px 12px 14px;
  border: 2px solid rgba(255,255,255,0.88);
  border-radius: 10px 10px 14px 10px;
}
.brand-book::before,
.brand-book::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(255,255,255,0.82);
}
.brand-book::before { top: 12px; }
.brand-book::after { top: 22px; }
.brand-leaf {
  position: absolute;
  width: 13px;
  height: 22px;
  right: 6px;
  bottom: 9px;
  background: linear-gradient(180deg, #42e0c4, #10a68c);
  border-radius: 13px 0 13px 0;
  transform: rotate(22deg);
}
.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.brand-copy small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 0.8rem;
}
.main-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
}
.main-nav a {
  color: #455346;
  font-weight: 600;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-2px); }
.button-accent {
  background: linear-gradient(135deg, var(--accent), #31c2a8);
  color: #0e1a17;
  box-shadow: 0 16px 30px rgba(27, 159, 138, 0.24);
}
.button-light {
  background: rgba(255,255,255,0.62);
  color: var(--ink);
  border-color: rgba(33,49,39,0.12);
}
.button-dark {
  background: var(--forest);
  color: #f9f7f1;
  box-shadow: 0 16px 30px rgba(49, 77, 62, 0.22);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(33,49,39,0.12);
  background: rgba(255,255,255,0.6);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero { padding-top: 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.eyebrow::before,
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero h1,
.intro-copy h2,
.section-head h2,
.product-copy h2,
.highlight-card h2,
.contact-copy h2,
.privacy-shell h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -0.04em;
}
.hero h1 { font-size: clamp(2.8rem, 4vw, 5.2rem); max-width: 13ch; }
.hero-text, .intro-copy p, .section-head p, .product-copy p, .highlight-card p, .contact-copy p, .privacy-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badges {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.badge-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(33,49,39,0.08);
  box-shadow: var(--shadow);
}
.badge-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(239,177,29,0.18);
  color: #6c5121;
  font-weight: 800;
  margin-bottom: 12px;
}
.badge-card strong { display: block; margin-bottom: 8px; }
.badge-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.hero-visual { position: relative; min-height: 720px; }
.phone-stage {
  position: relative;
  height: 100%;
  min-height: 720px;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.8;
}
.hero-orb-one { width: 260px; height: 260px; background: rgba(27,159,138,0.16); bottom: 40px; left: -30px; }
.hero-orb-two { width: 230px; height: 230px; background: rgba(239,177,29,0.12); top: 50px; right: -20px; }
.phone-card {
  position: absolute;
  background: linear-gradient(180deg, #111b34, #0d1930);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 34px 60px rgba(15, 29, 42, 0.35);
  border: 1px solid rgba(255,255,255,0.3);
}
.phone-card img {
  border-radius: 34px;
  overflow: hidden;
}
.main-phone {
  width: min(82%, 420px);
  right: 22px;
  top: 42px;
  transform: rotate(2deg);
}
.floating-icon-card {
  position: absolute;
  left: 32px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,253,248,0.9);
  box-shadow: 0 18px 50px rgba(22,34,63,0.18);
  max-width: 330px;
}
.floating-icon-card img { width: 62px; height: 62px; border-radius: 18px; }
.floating-icon-card strong { display: block; margin-bottom: 6px; }
.floating-icon-card span { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.sticky-note {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(33,49,39,0.08);
  box-shadow: 0 16px 35px rgba(22,34,63,0.12);
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 190px;
}
.sticky-note strong { display: block; margin-bottom: 6px; }
.sticky-note p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 0.92rem; }
.sticky-note-a { left: 18px; top: 34px; }
.sticky-note-b { left: 8px; top: 224px; }
.sticky-note-c { right: 8px; bottom: 180px; }
.float-a { animation: bobA 8s ease-in-out infinite; }
.float-b { animation: bobB 10s ease-in-out infinite; }
.float-c { animation: bobC 9s ease-in-out infinite; }
@keyframes bobA { 0%,100% { transform: translateY(0) rotate(-4deg);} 50% { transform: translateY(-10px) rotate(-1deg);} }
@keyframes bobB { 0%,100% { transform: translateY(0) rotate(2deg);} 50% { transform: translateY(12px) rotate(-2deg);} }
@keyframes bobC { 0%,100% { transform: translateY(0) rotate(-2deg);} 50% { transform: translateY(-12px) rotate(1deg);} }

.ticker-band {
  border-top: 1px solid rgba(33,49,39,0.08);
  border-bottom: 1px solid rgba(33,49,39,0.08);
  overflow: hidden;
  background: rgba(255,255,255,0.46);
}
.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  padding: 18px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #314d3e;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span::after {
  content: '•';
  margin-left: 56px;
  color: var(--gold);
}
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

.intro-panel .intro-grid,
.product-grid,
.highlight-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}
.intro-copy h2,
.section-head h2,
.product-copy h2,
.highlight-card h2,
.contact-copy h2,
.privacy-shell h1 { font-size: clamp(2.2rem, 3.2vw, 4rem); }
.intro-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.intro-cards article,
.service-card,
.process-step,
.contact-card,
.highlight-card,
.stacked-papers article,
.privacy-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(33,49,39,0.08);
  box-shadow: var(--shadow);
}
.intro-cards article {
  padding: 24px;
  border-radius: 26px;
}
.intro-cards strong { display: block; margin-bottom: 10px; }
.intro-cards p { margin: 0; color: var(--muted); line-height: 1.7; }

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 260px;
  border-radius: 30px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(27,159,138,0.12);
}
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(99, 82, 138, 0.12);
  color: var(--plum);
  font-weight: 800;
  margin-bottom: 18px;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.product-section {
  background: linear-gradient(180deg, rgba(49,77,62,0.05), rgba(49,77,62,0));
}
.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}
.feature-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  flex: 0 0 10px;
}
.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.mini-note { color: var(--muted); font-size: 0.95rem; }
.screens-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.screen-shot {
  padding: 12px;
  background: linear-gradient(180deg, #172646, #0f1f3b);
  border-radius: 32px;
  box-shadow: 0 28px 40px rgba(22,34,63,0.24);
  overflow: hidden;
}
.screen-shot img { width: 100%; border-radius: 24px; }
.tall { align-self: start; }
.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }
.wide { transform: translateY(-10px); }

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.process-step {
  padding: 24px;
  border-radius: 26px;
  position: relative;
}
.process-step strong {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.process-step p { margin: 0; color: var(--muted); line-height: 1.7; }

.highlight-card,
.contact-card,
.privacy-card {
  padding: 32px;
  border-radius: 32px;
}
.stacked-papers {
  position: relative;
  padding-top: 22px;
}
.stacked-papers article {
  padding: 24px 26px;
  border-radius: 26px;
  margin-bottom: 18px;
  transform-origin: left center;
}
.stacked-papers article:nth-child(1) { transform: rotate(-2deg); }
.stacked-papers article:nth-child(2) { transform: rotate(1.2deg); }
.stacked-papers article:nth-child(3) { transform: rotate(-1deg); }
.stacked-papers small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.stacked-papers strong { display: block; margin-bottom: 8px; }
.stacked-papers p { margin: 0; color: var(--muted); line-height: 1.7; }

.contact-card {
  display: grid;
  gap: 20px;
}
.contact-item { display: grid; gap: 8px; }
.contact-item span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}
.contact-item strong,
.contact-item a { font-size: 1.04rem; line-height: 1.65; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(33,49,39,0.08);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}
.footer-wrap p { margin: 8px 0 0; color: var(--muted); max-width: 42ch; line-height: 1.7; }
.footer-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
}
.footer-meta a {
  color: var(--forest);
  font-weight: 700;
}

.privacy-page .section { padding-top: 72px; padding-bottom: 72px; }
.compact-header { position: sticky; }
.privacy-shell { max-width: 920px; }
.privacy-lead { color: var(--muted); margin-top: -8px; margin-bottom: 26px; font-size: 1.05rem; }
.privacy-card { margin-bottom: 18px; }
.privacy-card h2 { margin-top: 0; font-family: 'Fraunces', serif; font-size: 1.5rem; }
.privacy-card a { color: var(--accent-dark); font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .intro-panel .intro-grid,
  .product-grid,
  .highlight-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .phone-stage { min-height: 720px; }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    background: rgba(255,253,248,0.97);
    border: 1px solid rgba(33,49,39,0.08);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(20,32,29,0.14);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 10px 0; }
  .hero { padding-top: 42px; }
  .hero-badges,
  .intro-cards,
  .screens-grid { grid-template-columns: 1fr; }
  .services-grid,
  .process-line { grid-template-columns: 1fr; }
  .phone-stage {
    min-height: 820px;
    padding: 20px;
  }
  .main-phone {
    position: relative;
    width: min(100%, 390px);
    right: auto;
    top: 140px;
    margin: 0 auto;
  }
  .sticky-note-a { left: 12px; top: 20px; }
  .sticky-note-b { left: auto; right: 14px; top: 120px; }
  .sticky-note-c { right: 18px; bottom: 180px; }
  .floating-icon-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100vw - 28px, 100%); }
  .section { padding: 72px 0; }
  .hero h1 { font-size: 2.5rem; }
  .intro-copy h2,
  .section-head h2,
  .product-copy h2,
  .highlight-card h2,
  .contact-copy h2,
  .privacy-shell h1 { font-size: 2rem; }
  .button { width: 100%; }
  .contact-actions .button { width: auto; }
  .sticky-note {
    max-width: 160px;
    padding: 14px;
  }
  .phone-stage { min-height: 760px; }
}
