:root {
  --text: #1c1917;
  --secondary: #78716c;
  --bg: #f3ede3;
  --surface: #ebe4d8;
  --card: #fffbf7;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-soft: #ccfbf1;
  --divider: #e7e0d4;
  --on-accent: #ffffff;
  --radius: 20px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--on-accent);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(20, 184, 166, 0.35), transparent 55%),
    linear-gradient(165deg, #0f766e 0%, #115e59 48%, #0a4f4a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 70%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.12), transparent 50%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    );
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-24px, 16px, 0);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 64px;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  animation: rise 0.7s ease-out both;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-slogan {
  margin: -8px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  animation: rise 0.7s ease-out 0.06s both;
}

.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  animation: rise 0.7s ease-out 0.08s both;
}

.hero-lead {
  margin: 0;
  max-width: 36ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  animation: rise 0.7s ease-out 0.16s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: rise 0.7s ease-out 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: #f8fffe;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn.is-soon {
  opacity: 0.92;
  cursor: default;
}

.btn .soon {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  animation: rise 0.7s ease-out 0.3s both;
}

/* —— Sections —— */
section {
  padding: 72px 0;
}

.section-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 36px;
  max-width: 42ch;
  color: var(--secondary);
  font-size: 1.05rem;
}

.features {
  display: grid;
  gap: 28px 32px;
}

@media (min-width: 720px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature {
  padding: 0;
  border: none;
  background: transparent;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-copy {
  margin: 0;
  color: var(--secondary);
  font-size: 0.98rem;
}

.feature-num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.step {
  position: relative;
  padding-top: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.step-copy {
  margin: 0;
  color: var(--secondary);
  font-size: 0.95rem;
}

.band {
  background: var(--surface);
  border-block: 1px solid var(--divider);
}

.band .cta-row {
  animation: none;
}

.band .btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.band .btn-primary:hover {
  background: var(--accent-dark);
}

.band .btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--divider);
}

.band .btn-ghost:hover {
  background: var(--card);
}

/* —— Footer —— */
.footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--divider);
  font-size: 0.9rem;
  color: var(--secondary);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer strong {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

/* —— Privacy page —— */
.page-top {
  background: linear-gradient(165deg, #0f766e, #115e59);
  color: #fff;
  padding: 28px 0 36px;
}

.page-top a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.page-top h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
}

.legal {
  padding: 40px 0 64px;
  max-width: 720px;
}

.legal .meta {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.legal-doc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.legal-block {
  margin: 0 0 28px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-block > div {
  margin: 0 0 10px;
}

.legal-block > div:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
