:root {
  --bg-deep: #051216;
  --bg: #0a1f26;
  --teal-1: #0e5f6b;
  --teal-2: #2297aa;
  --teal-3: #2cacc3;
  --teal-tint: #d0faff;
  --accent: #ff3b5c;
  --accent-hover: #e02e4d;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 1);
  --text-muted: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 14px;
}

@font-face {
  font-family: "Pacifico";
  src: url("./assets/fonts/Pacifico-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sohne";
  src: url("./assets/fonts/Sohne-Leicht.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sohne";
  src: url("./assets/fonts/Sohne-Kraftig.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  color: var(--text);
  font-family: "Sohne", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #0e5f6b 0%, #2297aa 50%, #2cacc3 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Snow container */
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: none;
  color: white;
}

.snowflake svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 16px;
  z-index: 1000;
}

header {
  padding: 26px 0;
  position: relative;
  z-index: 10;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title strong {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.brand-title span {
  color: var(--text-muted);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 46px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--teal-tint);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 59, 92, 0.14);
}

h1 {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  margin: 14px 0 12px;
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, rgba(255, 255, 255, 0.10) 140%);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(255, 59, 92, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, rgba(255, 255, 255, 0.12) 140%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero-aside {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-aside img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.12);
}

.hero-bullets {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.bullet svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

main#main {
  position: relative;
  z-index: 10;
}

section {
  padding: 28px 0;
}

.section-title {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 14px;
}

.section-subtitle {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.card {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq details {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary strong {
  font-weight: 600;
  font-size: 16px;
}

.faq summary span {
  color: var(--teal-tint);
  font-weight: 600;
}

.faq .answer {
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.16);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(208, 250, 255, 0.50);
  box-shadow: 0 0 0 5px rgba(208, 250, 255, 0.10);
}

.hidden {
  display: none !important;
}

.status {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.status.success {
  color: rgba(208, 250, 255, 0.92);
}

.status.error {
  color: rgba(255, 122, 145, 0.92);
}

footer {
  padding: 32px 0 50px;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

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

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.page {
  padding: 26px 0 40px;
}

.page h1 {
  font-size: clamp(34px, 4vw, 48px);
}

.prose {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.prose h2 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.prose p,
.prose li {
  color: var(--text-muted);
  line-height: 1.7;
}

.prose ul {
  padding-left: 20px;
}

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

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

