:root {
  --accent-cream: #fdf5e3;
  --accent-white: #ffffff;
  --bg-gold: #f5c356;
  --bg-black: #000000;
  --soft-orange: #f2b86c;
  --light-gray: #f5f5f5;
  --coral: #f2746c;
  --text-dark: #171717;
  --text-muted: #4b4b4b;
  --max-width: 1120px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-black);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-cream);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: transparent;
  color: var(--accent-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-links a {
  color: var(--accent-white);
  font-size: 0.94rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--accent-cream);
  color: var(--text-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-gold), var(--soft-orange));
}

.hero::before {
  content: "";
  position: absolute;
  inset: -180px auto auto -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 68px 20px 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.07;
}

.subtitle {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #272727;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-dark {
  background: var(--bg-black);
  color: var(--accent-cream);
}

.btn-dark:hover {
  background: #262626;
}

.btn-light {
  background: transparent;
  color: #1b1b1b;
  border-color: rgba(0, 0, 0, 0.35);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-card {
  background: var(--accent-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.hero-card p {
  margin: 0;
  color: var(--text-muted);
}

.flower-wave {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.wave-grid {
  margin-top: -16px;
  background: var(--accent-white);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.wave-item {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 14px;
}

.wave-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.wave-item p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.section {
  padding: 66px 20px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dark-section {
  background: var(--bg-black);
  color: var(--accent-white);
}

.dark-section .section-lead {
  color: #d9d9d9;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.section-lead {
  margin: 0 0 24px;
  max-width: 760px;
  color: var(--text-muted);
}

.feature-river {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  border-radius: var(--radius-md);
  background: var(--accent-white);
  padding: 18px;
}

.feature-card h3 {
  margin: 0 0 6px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.keyword-cloud {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-cloud span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.83rem;
}

.screens-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-card {
  background: var(--accent-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.phone-frame {
  aspect-ratio: 9 / 19;
  background: linear-gradient(180deg, #111, #292929);
  padding: 10px;
}

.phone-frame img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: #333;
}

.screen-caption {
  padding: 12px 14px 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.bloom-strip {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--coral), var(--soft-orange));
  color: #2a1a16;
}

.bloom-strip strong {
  display: block;
  margin-bottom: 4px;
}

.policy-wrap {
  max-width: 900px;
}

.policy-block {
  background: var(--accent-white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
}

.policy-block h2 {
  margin: 0 0 8px;
}

.policy-block p,
.policy-block li {
  color: var(--text-muted);
}

.policy-block ul {
  margin: 6px 0 0 20px;
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  background: var(--accent-white);
  border-radius: var(--radius-md);
  padding: 20px;
}

.contact-item {
  margin-bottom: 12px;
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
}

.simple-form {
  display: grid;
  gap: 12px;
}

.simple-form input,
.simple-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  font: inherit;
}

.simple-form textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 24px 20px 40px;
  color: #d5d5d5;
  background: #0d0d0d;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-cream);
  font-size: 0.93rem;
}

@media (max-width: 980px) {
  .hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .wave-grid {
    grid-template-columns: 1fr 1fr;
  }

  .screens-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    padding-inline: 14px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 10px;
    z-index: 30;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero-inner {
    padding: 52px 14px 44px;
  }

  .section {
    padding: 52px 14px;
  }

  .wave-grid,
  .feature-river,
  .screens-grid {
    grid-template-columns: 1fr;
  }
}
