:root {
  --bg: #f3efe8;
  --bg-soft: #ece6dc;
  --surface: #ffffff;
  --surface-alt: #f8f5ef;
  --ink: #162032;
  --ink-soft: #263247;
  --text: #182131;
  --muted: #5f6978;
  --line: #ddd8cf;
  --line-strong: #cfc8bc;
  --accent: #244c6a;
  --accent-soft: #e7eef4;
  --success: #1e6b52;
  --shadow-sm: 0 8px 24px rgba(15, 23, 34, 0.05);
  --shadow-md: 0 20px 50px rgba(15, 23, 34, 0.08);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.section {
  padding: 5.25rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading h1,
.section-heading h2,
.hero-copy h1,
.page-hero h1 {
  margin: 0.85rem 0 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  color: var(--ink);
}

.section-heading p,
.page-hero p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(243, 239, 232, 0.86);
  border-bottom: 1px solid rgba(24, 33, 49, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(24, 33, 49, 0.14);
  background: #f8f5ef;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.brand-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(24, 33, 49, 0.12);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle svg {
  width: 1.2rem;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--ink);
  color: #f9f6ef;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
  background: #101826;
}

.button-secondary {
  background: transparent;
  border-color: rgba(24, 33, 49, 0.18);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  padding: 4.6rem 0 5.4rem;
  background: linear-gradient(180deg, #151f30 0%, #111927 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: #f5f1e9;
  max-width: 760px;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #d8e1ec;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.hero-copy p {
  max-width: 58ch;
  margin: 1rem 0 0;
  color: rgba(241, 236, 229, 0.74);
  font-size: 1.08rem;
}

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

.hero .button {
  background: #f3efe8;
  color: var(--ink);
}

.hero .button:hover {
  background: #ffffff;
}

.cta-note {
  margin-top: 0.9rem;
  color: rgba(241, 236, 229, 0.82);
  font-weight: 600;
}

.panel,
.card,
.pricing-card,
.faq-item,
.policy-card,
.contact-card,
.audience-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.check-list,
.policy-list,
.contact-details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.check-list li,
.policy-list li,
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid #ece7df;
}

.check-list li:first-child,
.policy-list li:first-child,
.contact-details li:first-child {
  border-top: 0;
  padding-top: 0;
}

.list-icon {
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.2rem;
  color: var(--success);
}

.check-list strong,
.contact-details strong {
  display: block;
  color: var(--ink);
}

.grid-3,
.grid-2,
.features-grid,
.audience-grid,
.support-grid {
  display: grid;
  gap: 1.3rem;
}

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

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

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

.card,
.audience-card,
.pricing-card,
.policy-card,
.contact-card,
.faq-item {
  border-radius: var(--radius-md);
}

.card {
  padding: 1.7rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid #d8e3ec;
  color: var(--accent);
}

.card h3,
.audience-card h3,
.pricing-card h2,
.policy-card h2,
.contact-card h2 {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  color: var(--ink);
}

.card p,
.audience-card p,
.pricing-card p,
.policy-card p,
.contact-card p,
.faq-body p,
.faq-body li,
.policy-card li {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.audience-card {
  padding: 1.8rem;
}

.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: min(100%, 720px);
  padding: 2.3rem;
  text-align: center;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--accent);
  font-weight: 700;
}

.price {
  margin-top: 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
  color: var(--ink);
}

.price span {
  font-size: 1.08rem;
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
}

.check-list {
  margin-top: 1.6rem;
  text-align: left;
}

.pricing-note {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.faq-item {
  overflow: clip;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 180ms ease;
}

.faq-item[data-open="true"] .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}

.faq-item[data-open="true"] .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 1.5rem 0;
}

.faq-item[data-open="true"] .faq-body-inner {
  padding-bottom: 1.4rem;
}

.page-hero {
  padding: 4rem 0 2.6rem;
  background: linear-gradient(180deg, #151f30 0%, #111927 100%);
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #d8e1ec;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  color: #f5f1e9;
}

.page-hero p {
  color: rgba(241, 236, 229, 0.72);
}

.page-hero .subtitle {
  max-width: 58ch;
}

.policy-layout {
  display: grid;
  gap: 1.5rem;
}

.policy-card,
.contact-card {
  padding: 2rem;
}

.policy-card h2,
.contact-card h2 {
  margin-top: 0;
}

.policy-card h3 {
  margin: 1.6rem 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
}

.policy-card p + p {
  margin-top: 0.9rem;
}

.policy-meta {
  margin-bottom: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.support-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fcfbf8;
  color: var(--text);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(36, 76, 106, 0.14);
  border-color: rgba(36, 76, 106, 0.4);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note,
.contact-note {
  color: var(--muted);
}

.form-status {
  min-height: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  border-top: 1px solid rgba(24, 33, 49, 0.08);
  background: #151f30;
}

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

.footer-brand .brand,
.footer-links a {
  color: #f5f1e9;
}

.footer-brand .brand-mark {
  background: #f3efe8;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.footer-brand p,
.footer-meta p {
  margin: 0.55rem 0 0;
  color: rgba(241, 236, 229, 0.68);
}

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

.footer-links a {
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(36, 76, 106, 0.28);
  text-underline-offset: 0.18em;
}

.footer-brand .inline-link {
  color: #d9e6f0;
  text-decoration-color: rgba(217, 230, 240, 0.28);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .features-grid,
  .audience-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .section,
  .hero {
    padding: 4.25rem 0;
  }

  .nav {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1.05rem;
    border: 1px solid rgba(24, 33, 49, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-menu[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu .button {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

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

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .pricing-card,
  .policy-card,
  .contact-card,
  .card,
  .audience-card {
    padding: 1.4rem;
  }

  .faq-question,
  .faq-body-inner {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
