:root {
  --canvas: #FDFBF7;
  --card: #FFFFFF;
  --green: #1B4332;
  --green-2: #2D6A4F;
  --green-3: #40916C;
  --ink: #1A1D20;
  --muted: #626A66;
  --sand: #D9CDBC;
  --sand-soft: #EEE8DE;
  --danger: #A73535;
  --danger-soft: #FCEDEC;
  --shadow: 0 18px 50px rgba(27, 67, 50, 0.09);
  --radius: 24px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 6%, rgba(64, 145, 108, 0.10), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--green-2);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: 10px;
  background: var(--green);
  color: white;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 205, 188, .75);
  background: rgba(253, 251, 247, .92);
  backdrop-filter: blur(18px);
}

.header-inner,
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: var(--green);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 5px 16px rgba(27, 67, 50, .12);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--sand);
  border-radius: 12px;
  background: var(--card);
  color: var(--green);
  padding: .62rem .82rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  padding: .62rem .78rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: .93rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--sand-soft);
  color: var(--green);
}

.hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0 4.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.2rem;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -.025em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  margin: 0 0 .62rem;
  font-size: 1.35rem;
}

.lead {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 9px 24px rgba(27, 67, 50, .15);
}

.button:hover {
  background: #12382A;
  color: white;
}

.button.secondary {
  border-color: var(--sand);
  background: var(--card);
  color: var(--green);
  box-shadow: none;
}

.button.danger {
  background: var(--danger);
}

.app-preview {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  padding: 1.05rem;
  border: 1px solid var(--sand);
  border-radius: 36px;
  background: linear-gradient(145deg, #FFFFFF, #F5F0E8);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem .55rem .95rem;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.preview-brand img {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-3);
  box-shadow: 0 0 0 5px rgba(64, 145, 108, .12);
}

.preview-panel {
  padding: 1.25rem;
  border-radius: 25px;
  background: var(--green);
  color: white;
}

.preview-panel p {
  margin: 0 0 .2rem;
  color: rgba(255,255,255,.76);
  font-size: .84rem;
}

.preview-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: .75rem;
}

.mini-card {
  min-height: 118px;
  padding: 1rem;
  border: 1px solid var(--sand-soft);
  border-radius: 20px;
  background: var(--card);
}

.mini-card span {
  display: block;
  margin-bottom: .8rem;
  color: var(--green-2);
  font-size: 1.35rem;
}

.mini-card strong {
  display: block;
  color: var(--ink);
  font-size: .93rem;
}

.mini-card small {
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section.soft {
  background: rgba(238, 232, 222, .48);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  padding: 1.55rem;
  border: 1px solid var(--sand-soft);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 34px rgba(27, 67, 50, .055);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: #EAF3ED;
  color: var(--green);
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.trust-panel {
  padding: 2rem;
  border-radius: 28px;
  background: var(--green);
  color: white;
}

.trust-panel h2,
.trust-panel h3 {
  color: white;
}

.trust-panel p {
  color: rgba(255,255,255,.78);
}

.trust-panel.light {
  border: 1px solid var(--sand);
  background: var(--card);
  color: var(--ink);
}

.trust-panel.light h3 {
  color: var(--green);
}

.trust-panel.light p {
  color: var(--muted);
}

.page-hero {
  padding: 4.4rem 0 2.3rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 3rem;
  align-items: start;
  padding-bottom: 5rem;
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin-top: 2.8rem;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: #414844;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: .45rem;
}

.prose .notice {
  margin: 1.4rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--green-3);
  border-radius: 0 14px 14px 0;
  background: #EEF6F0;
}

.prose .danger-notice {
  border-left-color: var(--danger);
  background: var(--danger-soft);
}

.toc {
  position: sticky;
  top: 100px;
  padding: 1.15rem;
  border: 1px solid var(--sand-soft);
  border-radius: 18px;
  background: var(--card);
}

.toc strong {
  display: block;
  margin-bottom: .65rem;
  color: var(--green);
}

.toc a {
  display: block;
  padding: .34rem 0;
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--green);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--sand);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: .25rem 0 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 72px;
  padding: 1rem 1rem 1rem 4.2rem;
  border: 1px solid var(--sand-soft);
  border-radius: 18px;
  background: var(--card);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: .75rem;
}

details {
  border: 1px solid var(--sand-soft);
  border-radius: 16px;
  background: var(--card);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--green);
  font-weight: 750;
}

details p {
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--sand);
  background: #F7F3EC;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand p {
  max-width: 540px;
  margin: .4rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .9rem 1.15rem;
}

.footer-links a {
  color: var(--ink);
  font-size: .88rem;
  text-decoration: none;
}

.footer-meta {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sand);
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 820px) {
  .hero-grid,
  .trust-strip,
  .page-layout {
    grid-template-columns: 1fr;
  }

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

  .toc {
    position: static;
    order: -1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .45rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .65rem;
    border: 1px solid var(--sand);
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 11px;
  }

  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .hero {
    padding-top: 3.5rem;
  }

  .app-preview {
    border-radius: 26px;
  }

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

  .button {
    width: 100%;
  }
}

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

/* Refined editorial homepage — no decorative drawings */
.hero-editorial {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4rem, 7vw, 6.8rem) 0 3.5rem;
  background: #F7F0E6;
}

.hero-paper,
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.hero-paper {
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.96), transparent 28rem),
    radial-gradient(circle at 40% 75%, rgba(222, 190, 125, .22), transparent 24rem),
    linear-gradient(110deg, #FBF7F0 0%, #F5EBDD 54%, #E9D8C5 100%);
}

.hero-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-ambient {
  left: 58%;
  background:
    radial-gradient(circle at 80% 18%, rgba(42, 93, 66, .28), transparent 17rem),
    radial-gradient(circle at 86% 72%, rgba(80, 50, 33, .35), transparent 20rem),
    linear-gradient(140deg, transparent 12%, rgba(255,255,255,.08) 40%, rgba(73,49,32,.24) 100%);
}

.hero-ambient::before,
.hero-ambient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-ambient::before {
  width: 270px;
  height: 520px;
  right: 5%;
  top: 5%;
  background:
    linear-gradient(160deg, rgba(21,72,48,.68), rgba(53,89,59,.12));
  transform: rotate(18deg);
  opacity: .42;
}

.hero-ambient::after {
  width: 420px;
  height: 150px;
  right: -4%;
  bottom: 3%;
  background: rgba(91, 61, 42, .36);
  transform: rotate(-6deg);
  opacity: .68;
}

.hero-editorial::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(247,240,230,.9));
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

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

.hero-editorial h1 {
  max-width: 660px;
  margin: 0;
  color: #17604A;
  font-size: clamp(3.55rem, 6.2vw, 6rem);
  text-wrap: balance;
}

.hero-editorial .lead {
  max-width: 650px;
  color: #303733;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(95%, 530px);
  height: 610px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.52), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.46);
  box-shadow:
    0 40px 85px rgba(48, 34, 24, .26),
    inset 0 1px 0 rgba(255,255,255,.7);
  transform: rotate(3deg);
  backdrop-filter: blur(16px);
}

.app-preview-editorial {
  z-index: 4;
  width: min(100%, 440px);
  border-color: rgba(255,255,255,.74);
  background: rgba(255, 252, 246, .94);
  box-shadow:
    0 34px 70px rgba(43, 32, 24, .28),
    0 4px 16px rgba(255,255,255,.75) inset;
  backdrop-filter: blur(10px);
}

.app-stack {
  position: absolute;
  width: min(84%, 400px);
  height: 545px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 38px;
  background: rgba(248, 239, 226, .68);
  box-shadow: 0 28px 55px rgba(43, 32, 24, .16);
}

.app-stack-mid {
  z-index: 2;
  transform: translate(28px, -22px);
}

.app-stack-back {
  z-index: 1;
  transform: translate(56px, -44px);
  opacity: .7;
}

.editorial-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  background:
    radial-gradient(circle at 50% 0, rgba(78, 176, 127, .3), transparent 48%),
    linear-gradient(145deg, #17553F, #0E3D2D);
  box-shadow: 0 13px 30px rgba(27,67,50,.28);
}

.editorial-panel strong {
  font-size: 2.05rem;
}

.sun-icon {
  color: #FFF8E9;
  font-size: 3.15rem;
  line-height: 1;
}

.editorial-grid .mini-card {
  min-height: 142px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 13px 24px rgba(51, 36, 24, .08);
}

.feature-symbol {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  border: 1px solid #CFDCCF;
  border-radius: 50%;
  background: #F7FAF5;
  color: #17604A !important;
  font-size: 1.35rem !important;
}

.release-note {
  position: absolute;
  bottom: .8rem;
  z-index: 5;
  margin: 0;
  padding: .58rem .9rem;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(253,251,247,.86);
  color: #2F493D;
  font-size: .82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.visual-spark {
  position: absolute;
  z-index: 5;
  color: rgba(255,255,255,.9);
  font-size: 2rem;
  text-shadow: 0 8px 22px rgba(0,0,0,.16);
}

.spark-one {
  right: 0;
  bottom: 3.6rem;
}

.spark-two {
  left: 1rem;
  top: 4.8rem;
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .hero-editorial-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 670px;
  }

  .hero-ambient {
    left: 20%;
    opacity: .64;
  }
}

@media (max-width: 620px) {
  .hero-editorial {
    padding-top: 3rem;
  }

  .hero-editorial h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-visual::before {
    width: 94%;
    height: 560px;
  }

  .app-stack {
    width: 85%;
    height: 515px;
  }

  .app-preview-editorial {
    width: 92%;
  }

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

  .editorial-grid .mini-card {
    min-height: 130px;
    padding: .8rem;
  }

  .editorial-panel strong {
    font-size: 1.55rem;
  }

  .sun-icon {
    font-size: 2.35rem;
  }
}
