:root {
  --cream: #fff8f4;
  --peach: #f8e4d8;
  --blush: #f2cfc4;
  --coral: #e8a598;
  --coral-deep: #d48474;
  --mint: #dceee6;
  --sage: #a8c5b8;
  --sage-deep: #6f9788;
  --ink: #4a3f3a;
  --ink-soft: #6b5e57;
  --ink-faint: #9a8c84;
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(74, 63, 58, 0.08);
  --shadow-soft: 0 6px 18px rgba(74, 63, 58, 0.06);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --font-display: "Hahmlet", "Noto Serif KR", serif;
  --font-body: "Noto Sans KR", sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #fde8dc 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, #dff0ea 0%, transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, #fff5ef 40%, var(--mint) 100%);
  background-attachment: fixed;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 244, 0.88);
  border-bottom: 1px solid rgba(232, 165, 152, 0.28);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, transparent 40%),
    linear-gradient(145deg, var(--coral) 0%, var(--sage) 100%);
  box-shadow: var(--shadow-soft);
  animation: mark-breathe 4.5s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.45rem 0.95rem !important;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

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

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(212, 132, 116, 0.28);
}

.btn-primary:hover {
  color: #fff;
}

.btn-soft {
  background: var(--mint);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn-soft:hover {
  color: var(--ink);
  background: #cfe6dc;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--blush);
}

.btn-ghost:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(242, 207, 196, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(74, 63, 58, 0.1);
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: var(--peach);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Hero — editorial stacked composition */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 63, 58, 0.15) 0%, rgba(74, 63, 58, 0.55) 100%),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-home-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
  color: #fff;
}

.hero-home-content .brand-signal {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: rise-in 0.9s ease both;
}

.hero-home-content h1 {
  color: #fff8f4;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 500;
  max-width: 28rem;
  margin-bottom: 1.25rem;
  animation: rise-in 0.9s 0.12s ease both;
}

.hero-home-content .lede {
  color: rgba(255, 248, 244, 0.9);
  max-width: 26rem;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  animation: rise-in 0.9s 0.22s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise-in 0.9s 0.32s ease both;
}

/* Page heroes (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  max-width: 18ch;
}

.page-hero p {
  max-width: 36rem;
  font-size: 1.08rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  background: var(--peach);
}

.hero-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Benefits ribbon */
.benefit-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 207, 196, 0.5);
}

.benefit-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.benefit-item p {
  font-size: 0.92rem;
  margin: 0;
}

/* Soft feature band */
.soft-band {
  background: linear-gradient(135deg, rgba(220, 238, 230, 0.75), rgba(248, 228, 216, 0.7));
  border-radius: calc(var(--radius) + 0.4rem);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
}

.soft-band h2 {
  margin-bottom: 1rem;
}

/* Course cards */
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sage-deep);
}

.chip-warm {
  background: var(--peach);
  color: var(--coral-deep);
}

.course-card h3 {
  font-size: 1.15rem;
}

.course-card h3 a {
  text-decoration: none;
  color: var(--ink);
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--coral-deep);
  margin-top: 0.75rem;
}

/* Testimonials */
.quote-block {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 207, 196, 0.4);
}

.quote-block blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.quote-block cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-faint);
  font-weight: 500;
}

.quote-long {
  grid-column: span 2;
}

.stars {
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 207, 196, 0.45);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(165deg, #fff 0%, var(--peach) 140%);
  border-color: var(--coral);
  transform: scale(1.03);
}

.price-card h3 {
  font-size: 1.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--ink-faint);
  font-family: var(--font-body);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.price-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(242, 207, 196, 0.45);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 1rem;
}

/* Forms */
.form-panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 207, 196, 0.45);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fffaf7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.25);
}

.form-group .error-msg {
  color: #b54a3c;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #b54a3c;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.success {
  display: block;
  background: var(--mint);
  color: var(--sage-deep);
}

.form-status.error {
  display: block;
  background: #fde4e0;
  color: #8c3a30;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.contact-aside {
  background: linear-gradient(160deg, var(--peach), var(--mint));
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.contact-aside h2 {
  font-size: 1.25rem;
}

.contact-aside p {
  font-size: 0.95rem;
}

/* Blog */
.blog-list article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 207, 196, 0.4);
  margin-bottom: 1.4rem;
}

.blog-list article img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.blog-list .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: 1.45rem;
}

.prose h3 {
  margin-top: 1.6rem;
  font-size: 1.15rem;
}

.prose ul, .prose ol {
  color: var(--ink-soft);
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0 2rem;
  box-shadow: var(--shadow);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(242, 207, 196, 0.4);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Modules */
.module-list {
  counter-reset: mod;
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  counter-increment: mod;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.25rem 4rem;
  margin-bottom: 0.85rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(242, 207, 196, 0.4);
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.05rem;
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.instructor img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

/* Tables */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(242, 207, 196, 0.5);
  vertical-align: top;
}

.cookie-table th {
  background: var(--peach);
  font-weight: 600;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, transparent, rgba(248, 228, 216, 0.55));
  border-top: 1px solid rgba(232, 165, 152, 0.3);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-tag {
  max-width: 22rem;
  font-size: 0.92rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 2rem;
}

.footer-col h2 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-col p {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-faint);
  border-top: 1px solid rgba(232, 165, 152, 0.25);
  padding-top: 1.25rem;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 520px;
  margin: 0 auto;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 16px 48px rgba(74, 63, 58, 0.16);
  border: 1px solid rgba(242, 207, 196, 0.6);
  animation: rise-in 0.45s ease both;
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.inline-error {
  background: #fde4e0;
  color: #8c3a30;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

/* Stats / social proof — human numbers */
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coral-deep);
  line-height: 1.2;
}

.proof-item span {
  font-size: 0.9rem;
  color: var(--ink-faint);
}

/* Case study */
.case-study {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 207, 196, 0.4);
  margin-bottom: 1.5rem;
}

.case-study h3 {
  font-size: 1.35rem;
}

/* 404 */
.page-404 {
  text-align: center;
  padding: 6rem 1.25rem;
}

.page-404 h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--coral);
}

/* Latency analytics custom page */
.metric-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.metric-step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(168, 197, 184, 0.35);
}

.metric-step .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mark-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3,
  .benefit-ribbon,
  .pricing-grid,
  .metric-flow,
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .quote-long {
    grid-column: span 1;
  }

  .hero-split,
  .contact-layout,
  .instructor {
    grid-template-columns: 1fr;
  }

  .blog-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 248, 244, 0.98);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(232, 165, 152, 0.3);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    text-align: center;
  }

  .grid-3,
  .grid-2,
  .benefit-ribbon,
  .pricing-grid,
  .metric-flow,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .hero-home-content {
    padding: 3.5rem 1.25rem 3rem;
  }
}
