@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --bg: #f6f0e8;
  --bg-deep: #fff8f1;
  --ink: #173641;
  --ink-soft: rgba(23, 54, 65, 0.74);
  --line: rgba(23, 54, 65, 0.12);
  --teal: #1f9aaa;
  --teal-deep: #106b78;
  --orange: #f58b2d;
  --orange-deep: #d9661a;
  --grape: #8e63da;
  --lemon: #f6d64c;
  --mint: #78c98a;
  --card: rgba(255, 252, 247, 0.78);
  --shadow: 0 24px 70px rgba(24, 59, 68, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 230, 140, 0.6), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(119, 201, 138, 0.22), transparent 28%),
    linear-gradient(180deg, #fbf4ea 0%, #f5efe7 52%, #f8f4ed 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.backdrop-fruit {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 16px 30px rgba(19, 63, 72, 0.14));
}

.fruit-lemon {
  top: 140px;
  left: -12px;
  width: 120px;
  transform: rotate(-12deg);
}

.fruit-grapes {
  right: -10px;
  top: 380px;
  width: 138px;
  transform: rotate(10deg);
}

.fruit-tool {
  right: 8%;
  bottom: 72px;
  width: 136px;
  transform: rotate(-14deg);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 18px 40px rgba(18, 47, 57, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(24, 72, 84, 0.18);
}

.brand-label {
  display: grid;
  gap: 3px;
}

.brand-label strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-label span {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.topnav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.94rem;
  transition: 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--ink);
  background: rgba(31, 154, 170, 0.08);
  outline: none;
}

.site-main {
  padding: 20px 0 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border-radius: 40px;
  background:
    linear-gradient(140deg, rgba(255, 251, 246, 0.9), rgba(252, 245, 236, 0.88)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 12px 6px 12px 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 154, 170, 0.12);
  color: var(--teal-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.page-intro h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.hero p,
.page-intro p,
.lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-pill {
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 54, 65, 0.08);
}

.stat-pill strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}

.stat-pill span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff7f0;
  background: linear-gradient(135deg, var(--orange) 0%, #ec6f3f 100%);
  box-shadow: 0 18px 34px rgba(236, 111, 63, 0.28);
}

.button-secondary {
  color: var(--teal-deep);
  background: rgba(31, 154, 170, 0.08);
  border-color: rgba(31, 154, 170, 0.15);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(31, 154, 170, 0.12), rgba(255, 214, 76, 0.12));
  overflow: hidden;
}

.hero-card {
  position: relative;
  display: grid;
  gap: 16px;
  height: 100%;
  min-height: 520px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px 0 0 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(16, 107, 120, 0.12), rgba(245, 139, 45, 0.10));
  filter: blur(24px);
}

.hero-shot {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 54, 63, 0.22);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(23, 54, 65, 0.08);
  box-shadow: 0 18px 34px rgba(19, 56, 67, 0.16);
}

.hero-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-badge strong {
  display: block;
  font-size: 0.94rem;
}

.hero-badge span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.badge-match {
  top: 16px;
  left: -6px;
}

.badge-tool {
  right: 0;
  bottom: 86px;
}

.badge-layer {
  left: 34px;
  bottom: 10px;
}

.section {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(25, 56, 62, 0.07);
  backdrop-filter: blur(12px);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  max-width: 760px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 54, 65, 0.08);
  box-shadow: 0 12px 28px rgba(21, 57, 64, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.card p,
.card li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(31, 154, 170, 0.16), rgba(142, 99, 218, 0.16));
  color: var(--teal-deep);
}

.highlight-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.panel-accent {
  background: linear-gradient(135deg, rgba(16, 107, 120, 0.96), rgba(53, 151, 141, 0.92));
  color: #f7fbfb;
}

.panel-accent p,
.panel-accent li,
.panel-accent .muted {
  color: rgba(247, 251, 251, 0.84);
}

.panel-accent h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
}

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

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-gallery .card {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.mini-gallery img {
  max-height: 120px;
  object-fit: contain;
}

.page-intro {
  display: grid;
  gap: 18px;
  padding: 32px 28px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.policy-layout,
.support-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
}

.toc,
.contact-card {
  position: sticky;
  top: 24px;
  align-self: start;
}

.toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.toc a:hover,
.toc a:focus-visible {
  background: rgba(31, 154, 170, 0.08);
  color: var(--ink);
  outline: none;
}

.stack {
  display: grid;
  gap: 16px;
}

.content-block h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.content-block p,
.content-block li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.content-block ul {
  margin: 0;
  padding-left: 20px;
}

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

.faq-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 54, 65, 0.08);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(245, 139, 45, 0.10);
  border: 1px solid rgba(217, 102, 26, 0.12);
  color: var(--orange-deep);
  font-weight: 700;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 34px rgba(23, 57, 67, 0.08);
}

.footer-card p {
  margin: 0;
  color: var(--ink-soft);
}

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

.footer-links a {
  font-weight: 800;
  color: var(--teal-deep);
}

@media (max-width: 980px) {
  .hero,
  .highlight-band,
  .policy-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

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

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

  .toc,
  .contact-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    border-radius: 28px;
  }

  .hero,
  .section,
  .page-intro {
    padding: 22px;
  }

  .hero-stats,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .backdrop-fruit {
    opacity: 0.4;
  }

  .fruit-lemon,
  .fruit-grapes,
  .fruit-tool {
    width: 88px;
  }
}
