/* Kream & Sugar marketing site — vanilla CSS port of the former Tailwind build */

:root {
  --color-primary: #976C58;
  --color-primary-dark: #7c5846;
  --color-secondary: #F5B8C5;
  --color-pink-light: #F4E7E7;
  --color-pink-cta: #F3C5CE;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-muted-light: #9ca3af;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-white: #ffffff;
  --color-green-50: #f0fdf4;
  --color-green-200: #bbf7d0;
  --color-green-700: #15803d;
  --color-green-800: #166534;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Preahvihear', Georgia, serif;
  --font-accent: 'Swanky and Moo Moo', cursive;

  --max-width: 1100px;
}

@font-face {
  font-family: 'Swanky and Moo Moo';
  src: url('/static/fonts/SwankyandMooMoo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--color-primary-dark); }

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

button { font-family: inherit; cursor: pointer; }

/* Layout helpers */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-muted); }
.text-white { color: var(--color-white); }

.bg-white { background: var(--color-white); }
.bg-gray-50 { background: var(--color-gray-50); }
.bg-pink-light { background: var(--color-pink-light); }
.bg-secondary-30 { background: rgba(245, 184, 197, 0.3); }
.bg-secondary-20 { background: rgba(245, 184, 197, 0.2); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--color-gray-100);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) { .site-header__inner { padding: 0.75rem 1.5rem; } }
.site-header__logo { display: flex; align-items: center; gap: 0.5rem; }
.site-header__logo img { height: 40px; width: auto; }
.site-header__logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-primary);
  display: none;
}
@media (min-width: 640px) { .site-header__logo-text { display: inline; } }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .site-nav { display: flex; } }
.site-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
}
.site-nav__link:hover { color: var(--color-primary); }

.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: background-color 0.15s, box-shadow 0.15s, transform 0.1s;
  text-decoration: none;
  text-align: center;
}
.btn--primary { background: var(--color-primary); color: var(--color-white); }
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-white); }
.btn--lg { padding: 0.875rem 2rem; font-size: 1.125rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.btn--lg:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.btn--block { display: block; width: 100%; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0.5rem;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gray-700);
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-gray-100);
  background: var(--color-white);
  padding: 0.25rem 1rem 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu__link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
}
.mobile-menu__btn { margin-top: 0.5rem; display: block; width: 100%; padding: 0.625rem; border-radius: 999px; background: var(--color-primary); color: var(--color-white); font-weight: 600; border: none; }

/* Footer */
.site-footer {
  background: #000;
  color: var(--color-white);
  padding: 2.5rem 1rem;
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.site-footer__logo img { height: 40px; width: auto; }
.site-footer__social { display: flex; gap: 1rem; align-items: center; }
.site-footer__social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.site-footer__social a:hover { color: var(--color-white); }
.site-footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__legal a { color: rgba(255, 255, 255, 0.6); }
.site-footer__legal a:hover { color: var(--color-white); }
.site-footer__copyright { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); text-align: center; }

/* Sections */
section { padding: 4rem 1rem; }
@media (min-width: 640px) { section { padding: 4rem 1.5rem; } }
section .inner { max-width: var(--max-width); margin: 0 auto; }

/* Home hero */
.hero {
  background: var(--color-white);
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding-top: 5rem; } }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1fr; } }
.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: rgba(245, 184, 197, 0.3);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 1024px) { .hero h1 { font-size: 3rem; } }
.hero h1 em { color: var(--color-primary); font-style: normal; }
.hero__checklist { list-style: none; padding: 0; margin: 0 0 2rem; }
.hero__checklist li { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--color-gray-600); }
.hero__checklist svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--color-primary); margin-top: 0.125rem; }
/* Hero copy card — puffed cushion (raised, rounded, soft 3D) */
.hero__copy-card {
  position: relative;
  background: linear-gradient(180deg, #F8D5DB 0%, #F3C5CE 38%, #EFBDC7 100%);
  color: var(--color-primary);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  margin: 2rem 0 2.5rem;
  font-family: var(--font-body);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.65),
    inset 0 -3px 6px rgba(151, 108, 88, 0.10),
    0 1px 2px rgba(151, 108, 88, 0.08),
    0 14px 28px rgba(151, 108, 88, 0.20),
    0 28px 56px rgba(151, 108, 88, 0.10);
}
.hero__copy-card h1 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0 0 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero__copy-card h1 em {
  font-family: var(--font-accent);
  color: var(--color-primary-dark);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-2deg) translateY(0.05em);
  padding: 0 0.05em;
}
.hero__line { margin: 0 0 0.85rem; color: var(--color-primary); line-height: 1.55; font-size: 1.0625rem; }
.hero__line:last-child {
  margin: 0.35rem 0 0;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--color-primary-dark);
}
@media (max-width: 600px) {
  .hero__copy-card {
    padding: 2rem 1.5rem;
    margin: 1.5rem 0 2rem;
    border-radius: 22px;
    box-shadow:
      inset 0 2px 1px rgba(255, 255, 255, 0.6),
      inset 0 -2px 4px rgba(151, 108, 88, 0.10),
      0 1px 2px rgba(151, 108, 88, 0.08),
      0 10px 20px rgba(151, 108, 88, 0.18),
      0 20px 40px rgba(151, 108, 88, 0.08);
  }
  .hero__copy-card h1 { font-size: 2rem; }
  .hero__copy-card h1 em { font-size: 1.2em; }
  .hero__line:last-child { font-size: 1.2rem; }
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.carousel__track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}
.carousel__track img {
  flex: 0 0 100%;
  width: 100%;
  object-fit: cover;
}
.carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.carousel__dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 0.15s;
}
.carousel__dots button.active { background: var(--color-white); }

/* Beta banner */
.beta-banner { background: var(--color-pink-light); text-align: center; padding: 2.5rem 1rem; }
.beta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.beta-banner__spots { font-size: 1.125rem; color: var(--color-gray-600); margin: 0 0 1rem; }
.beta-banner__spots strong { color: var(--color-primary); }

/* Problems / Why Us / Cards */
.section-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-text);
}
.sub-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.card h3, .card h4 {
  margin: 0 0 0.25rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}
.card p { margin: 0; font-size: 0.875rem; color: var(--color-muted); }

.card--feature {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.card--feature h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}
.card--feature p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.5; margin: 0; }

.card--pain {
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 184, 197, 0.5);
  background: rgba(245, 184, 197, 0.1);
  padding: 1.5rem;
}
.card--pain h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}
.card--pain p { font-size: 0.875rem; color: var(--color-gray-600); margin: 0; }

.card--green {
  border-radius: 0.5rem;
  border: 1px solid var(--color-green-200);
  background: var(--color-green-50);
  padding: 1.25rem;
  text-align: center;
}
.card--green .emoji { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; }
.card--green h4 { color: var(--color-green-800); margin: 0 0 0.25rem; font-weight: 700; }
.card--green p { color: var(--color-green-700); font-size: 0.875rem; margin: 0; }

/* Dictionary panel */
.dict-panel { max-width: 700px; margin: 0 auto; text-align: center; }
.dict-panel__title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.dict-panel__pronunciation { font-style: italic; color: var(--color-muted); margin-bottom: 1rem; }
.dict-panel__body { font-size: 1.125rem; line-height: 1.625; color: var(--color-gray-700); }

/* CTA panel */
.cta-panel { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-panel h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.cta-panel p { font-size: 1.125rem; color: var(--color-gray-600); margin-bottom: 2rem; }

/* Legal / prose */
.prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-gray-700);
  font-size: 1rem;
  line-height: 1.7;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.125rem; }
.prose p, .prose ul, .prose ol { margin: 0 0 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose strong { font-weight: 700; color: var(--color-text); }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--color-gray-600);
  font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.prose th, .prose td { border: 1px solid var(--color-gray-200); padding: 0.5rem 0.75rem; text-align: left; }
.prose th { background: var(--color-gray-50); font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--color-gray-200); margin: 2rem 0; }

.legal-meta { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.legal-page h1 { font-family: var(--font-heading); color: var(--color-primary); font-size: 2.25rem; margin-bottom: 0.5rem; }

/* Blog index */
.blog-hero {
  background: var(--color-white);
  padding: 4rem 1rem 2rem;
  text-align: center;
}
.blog-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-text); }
.blog-hero p { font-size: 1.125rem; color: var(--color-muted); }

.blog-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; padding: 0 1rem 4rem; }

.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}
.blog-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); color: inherit; }
@media (min-width: 768px) { .blog-card { grid-template-columns: 300px 1fr; } }
.blog-card img { width: 100%; height: 12rem; object-fit: cover; }
@media (min-width: 768px) { .blog-card img { height: 100%; } }
.blog-card__body { padding: 1.5rem; }
.blog-card__category {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 184, 197, 0.3);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
}
.blog-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.blog-card:hover .blog-card__title { color: var(--color-primary); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--color-muted); line-height: 1.5; margin: 0 0 1rem; }
.blog-card__meta { font-size: 0.75rem; color: var(--color-muted-light); display: flex; gap: 0.5rem; align-items: center; }

/* Blog post */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.breadcrumb { font-size: 0.875rem; color: var(--color-muted-light); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--color-muted-light); }

.blog-post h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 1024px) { .blog-post h1 { font-size: 2.5rem; } }
.blog-post__meta { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 2rem; display: flex; gap: 0.5rem; align-items: center; }
.blog-post__image { margin-bottom: 2rem; border-radius: 1rem; overflow: hidden; }
.blog-post__image img { width: 100%; height: auto; object-fit: cover; }

.tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-gray-200); display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

/* Stats table (survival guide) */
.stats-wrapper { max-width: 600px; margin: 0 auto; }
.stats-wrapper h2 { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1.5rem; }
.stats-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.stats-table thead { background: var(--color-primary); color: var(--color-white); }
.stats-table th, .stats-table td { padding: 0.75rem 1.5rem; font-size: 0.875rem; text-align: left; }
.stats-table th + th, .stats-table td + td { text-align: right; }
.stats-table tbody tr { border-top: 1px solid var(--color-gray-100); }
.stats-table tr.total { background: var(--color-gray-50); font-weight: 700; }

/* Subscribe form */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 640px) { .subscribe-form { flex-direction: row; } }
.subscribe-form input {
  flex: 1;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-300);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}
.subscribe-form input:focus { border-color: var(--color-primary); }
.subscribe-form button {
  border-radius: 0.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s;
}
.subscribe-form button:hover { background: var(--color-primary-dark); }
.subscribe-form button:disabled { opacity: 0.5; cursor: not-allowed; }

.subscribe-success {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.subscribe-success p { margin: 0; }
.subscribe-success p:first-child { font-size: 1.125rem; font-weight: 600; color: var(--color-primary); }
.subscribe-success p:last-child { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-muted); }

/* 404 */
.notfound {
  flex: 1 0 auto;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem;
}
.notfound h1 { font-size: 4rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1rem; }
.notfound p { font-size: 1.125rem; color: var(--color-muted); margin-bottom: 2rem; }

/* Beta popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay[hidden] { display: none; }
.popup-overlay__bg { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); }
.popup-modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: var(--color-secondary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.popup-close:hover { color: #fff; }
.popup-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0 0 1rem;
}
.popup-modal form { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-modal input {
  width: 100%;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}
.popup-modal input::placeholder { color: rgba(255, 255, 255, 0.6); }
.popup-modal input:focus { border-color: var(--color-white); }
.popup-modal button[type="submit"] {
  width: 100%;
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 0.75rem;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s;
}
.popup-modal button[type="submit"]:hover { background: rgba(255, 255, 255, 0.9); }
.popup-modal button[type="submit"]:disabled { opacity: 0.5; cursor: not-allowed; }
.popup-modal .error-msg { text-align: center; font-size: 0.875rem; color: var(--color-white); margin: 0; }
.popup-modal .success-msg { text-align: center; }
.popup-modal .success-msg h3 { margin-bottom: 0.5rem; }
.popup-modal .success-emoji { font-size: 3rem; margin-bottom: 1rem; text-align: center; }

/* Go page */
.go-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #E09CA2 0%, #ffd4fe 100%);
  padding: 2rem 1rem;
  font-family: var(--font-body);
}
.go-page__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--color-white);
  object-fit: contain;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.go-page__title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--color-white); margin: 0 0 0.25rem; text-align: center; }
.go-page__subtitle { color: var(--color-white); text-align: center; font-size: 1rem; margin: 0 0 1.5rem; max-width: 320px; }

.go-page__socials { display: flex; gap: 1rem; margin-bottom: 2rem; }
.go-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s, box-shadow 0.15s;
}
.go-social-icon:hover { transform: translate(4px, 4px); box-shadow: none; }
.go-social-icon img { width: 24px; height: 24px; }

.go-links { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.go-link {
  display: block;
  background: var(--color-white);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: #4D2F46;
  text-decoration: none;
  box-shadow: 8px 8px 0 #000;
  transition: transform 0.15s, box-shadow 0.15s;
}
.go-link:hover { transform: translate(4px, 4px); box-shadow: none; color: #4D2F46; }
.go-link img { display: inline-block; vertical-align: middle; width: 18px; height: 18px; margin-right: 0.5rem; }
