:root {
  --bg: #f7f8f3;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #111111;
  --muted: #646464;
  --border: rgba(17, 17, 17, 0.08);
  --accent: #b7e285;
  --accent-strong: #9fd866;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 226, 133, 0.38), transparent 34%),
    radial-gradient(circle at bottom right, rgba(183, 226, 133, 0.22), transparent 28%),
    var(--bg);
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 243, 0.86);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-right {
  margin-left: auto;
}

.brand-logo {
  width: min(230px, 32vw);
  height: auto;
}

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

.nav-primary {
  flex: 1;
}

.nav-link {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: all 0.18s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(17, 17, 17, 0.04);
  color: var(--text);
  outline: none;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 38px 24px 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-card,
.card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 36px;
}

.hero-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(183, 226, 133, 0.95);
  color: #1f2b12;
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-kicker {
  min-height: 70px;
  padding: 14px 26px;
}

.hero-kicker-logo {
  width: 156px;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p,
.lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 48rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mini-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(183, 226, 133, 0.42);
}

.button-secondary {
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

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

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 32px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(183, 226, 133, 0.85);
  filter: blur(40px);
}

.glow-one {
  width: 220px;
  height: 220px;
  top: -20px;
  right: -40px;
}

.glow-two {
  width: 180px;
  height: 180px;
  bottom: 24px;
  left: -30px;
  background: rgba(183, 226, 133, 0.42);
}

.phone-preview {
  position: relative;
  margin: 30px auto 0;
  width: min(320px, 100%);
  min-height: 360px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 36px;
  box-shadow: 0 30px 50px rgba(17, 17, 17, 0.12);
}

.phone-preview::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.mini-post {
  margin-top: 24px;
  padding: 18px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.mini-photo {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04)),
    linear-gradient(135deg, #d3f2ae, #a8d67a 48%, #dff3bf);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.mini-photo::after {
  content: "famous";
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.mini-location {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.68);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.mini-post h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.card {
  padding: 24px;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(183, 226, 133, 0.4);
  margin-bottom: 16px;
}

.card h2,
.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.card p,
.legal-card p,
.legal-card li,
.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card {
  padding: 34px;
  margin-top: 24px;
}

.page-header {
  margin-bottom: 22px;
}

.page-header .pill {
  margin-bottom: 18px;
}

.section {
  margin-top: 26px;
}

.section h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.section ul {
  margin: 0;
  padding-left: 18px;
}

.support-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  margin-top: 18px;
}

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

.support-email {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(183, 226, 133, 0.2);
  color: #2d4217;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 44px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 28px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .brand-right {
    margin-left: 0;
  }

  .brand-logo {
    width: min(220px, 48vw);
  }

  .hero-kicker-logo {
    width: 144px;
  }

  .nav {
    justify-content: center;
  }

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

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

  .footer-card,
  .support-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .page {
    padding: 24px 18px 54px;
  }

  .hero-card,
  .hero-visual,
  .legal-card,
  .card {
    padding: 24px;
  }

  .brand-logo {
    width: min(190px, 62vw);
  }

  .hero-kicker {
    min-height: 62px;
    padding: 12px 22px;
  }

  .hero-kicker-logo {
    width: 128px;
  }

  .hero h1,
  .page-title {
    font-size: 2.6rem;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 0.94rem;
  }
}
