/* ═══════════════════════════════════════════════════════════════
   Smarty App — Refined Editorial Landing
   Aesthetic: Luxury tech meets editorial magazine.
   Dark hero, warm neutrals, sage green accents.
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("/assets/fonts/BebasNeueCyrillic.woff2") format("woff2"),
       url("/assets/fonts/BebasNeueCyrillic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TildaSans";
  font-style: normal;
  font-weight: 300 800;
  src: url("https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2") format("woff2-variations");
  font-display: swap;
}

/* ── Design Tokens ────────────────────────────────── */
:root {
  --ink:         #111111;
  --ink-soft:    #4a4a4a;
  --ink-muted:   #888888;
  --sage:        #2d6a4f;
  --sage-soft:   #40916c;
  --cream:       #f9f7f2;
  --white:       #ffffff;
  --border:      rgba(0, 0, 0, 0.08);
  --border-light:rgba(0, 0, 0, 0.04);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);

  --radius-xl:   28px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   8px;

  --container:   1200px;
  --font-body:   "TildaSans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:"Bebas Neue Cyrillic", "TildaSans", sans-serif;

  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255,255,255,0.55);
  transition: color 0.3s var(--ease-out);
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-soft);
  transition: width 0.3s var(--ease-out);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-soft);
  border-color: var(--sage-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45,106,79,0.3);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--block { width: 100%; }

.btn--app .btn__icon {
  display: flex;
  align-items: center;
}
.btn--app .btn__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn[aria-disabled="true"] {
  opacity: 0.35;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   HERO  —  Dark, confident, editorial
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(45,106,79,0.07) 0%, transparent 55%),
    linear-gradient(175deg, #080808 0%, #111 55%, #181818 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* subtle noise texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1px solid rgba(45,106,79,0.35);
  border-radius: 100px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

.hero__text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 500px;
}

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

.hero__media {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero__media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(45,106,79,0.18) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.hero__media img {
  width: 82%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — gentle alternating rhythm
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 120px 0;
}

.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }

.section__head {
  margin-bottom: 56px;
}
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.section__head p {
  margin-top: 12px;
  font-size: 18px;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT  —  Purpose section (image + text)
   ═══════════════════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--sage);
  margin-bottom: 24px;
  border-radius: 2px;
}

.split__content p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES  —  Grid with green dot markers
   ═══════════════════════════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.features__content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  text-transform: uppercase;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.feature-list {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-list__item {
  display: flex;
  gap: 14px;
}

.feature-list__icon {
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.feature-list__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.feature-list__text {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.features__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.features__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════════
   AUDIENCE  —  Quote cards with big-quote decoration
   ═══════════════════════════════════════════════════════════════ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  color: var(--sage);
  opacity: 0.1;
  pointer-events: none;
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,106,79,0.12);
}

.quote-card h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.quote-card__role {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.quote-card__role a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote-card__text {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING  —  Clean cards, featured highlight
   ═══════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* highlighted tier */
.price-card--featured {
  border: 2px solid var(--sage);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
  z-index: 2;
}
.price-card--featured:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.price-card__period {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.price-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.price-card li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER  —  Structured, polished
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.45);
  padding: 56px 0 40px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,106,79,0.25), transparent);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.footer__brand {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s var(--ease-out);
}
.footer a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; animation: none; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE  —  Three clean breakpoints
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions { justify-content: center; }
  .hero__media img { max-width: 320px; }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .split__content { text-align: center; }
  .divider { margin-left: auto; margin-right: auto; }

  .features { grid-template-columns: 1fr; gap: 48px; }
  .features__media { order: -1; }
  .features__content { text-align: center; }
  .features__actions { justify-content: center; }
  .feature-list { text-align: left; }
}

/* ── Small tablet / large phone ── */
@media (max-width: 860px) {
  .site-header__inner {
    height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 6px;
  }
  .header-cta { order: 2; }

  .quote-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-5px); }

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

/* ── Mobile ── */
@media (max-width: 640px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .section { padding: 80px 0; }

  .btn { width: 100%; }

  .hero__actions,
  .features__actions {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }

  .split { gap: 32px; }
}
