/* Area Tech Academy - sales page */
:root {
  --bg: #0c0a14;
  --bg-elevated: #14111c;
  --bg-soft: #1a1624;
  --surface: #201b2c;
  --text: #f2f0f7;
  --text-muted: #9b96a8;
  --primary: #8257e5;
  --primary-bright: #996dff;
  --primary-deep: #633bbc;
  --accent-warm: #ff8a3d;
  --accent-cyan: #22d3ee;
  --success: #22c55e;
  --wa: #25d366;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
  --wrap: min(1120px, calc(100% - 2.5rem));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Animated page background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(130, 87, 229, 0.22), transparent 55%),
    radial-gradient(ellipse 35% 35% at 80% 30%, rgba(255, 138, 61, 0.12), transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 80%, rgba(34, 211, 238, 0.1), transparent 55%);
  animation: aurora-shift 18s ease-in-out infinite alternate;
}

.page-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
}

.page-bg__orb--1 {
  width: 380px;
  height: 380px;
  top: 15%;
  left: -8%;
  background: var(--primary);
  animation: bg-orb-1 22s ease-in-out infinite;
}

.page-bg__orb--2 {
  width: 300px;
  height: 300px;
  top: 55%;
  right: -6%;
  background: var(--accent-warm);
  animation: bg-orb-2 26s ease-in-out infinite;
}

.page-bg__orb--3 {
  width: 260px;
  height: 260px;
  bottom: 10%;
  left: 35%;
  background: var(--accent-cyan);
  animation: bg-orb-3 20s ease-in-out infinite;
}

.page-bg__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 30% 65%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 55% 35%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 75% 15%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 88% 70%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1.5px 1.5px at 45% 85%, rgba(255, 255, 255, 0.32), transparent);
  animation: stars-twinkle 6s ease-in-out infinite alternate;
}

main,
.brand-bar,
.site-footer,
.whatsapp-help {
  position: relative;
  z-index: 1;
}

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

button,
a {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.wrap--narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* Brand bar */
.brand-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.85rem 1.25rem;
  background: rgba(12, 10, 20, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-bar__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-bar__logo {
  width: min(200px, 52vw);
  height: auto;
  opacity: 0.95;
}

.brand-bar__cta {
  pointer-events: auto;
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  box-shadow: 0 10px 30px rgba(130, 87, 229, 0.4);
}

.btn--glow {
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(130, 87, 229, 0.55);
}

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

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 1.1rem;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6.5rem 1.25rem 4rem;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 109, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 109, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  animation: grid-drift 28s linear infinite;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__orb--a {
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation: orb-float 12s ease-in-out infinite;
}

.hero__orb--b {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  right: -8%;
  bottom: 5%;
  background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
  animation: orb-float 14s ease-in-out infinite reverse;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  animation: rise-in 0.9s var(--ease-out) both;
}

.hero__mark {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  font-family: var(--mono);
  font-size: 1.05rem;
  color: var(--accent-cyan);
  background: linear-gradient(145deg, #0f1729, #1e1b4b);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 0 28px rgba(34, 211, 238, 0.35),
    0 0 48px rgba(130, 87, 229, 0.25);
  animation: mark-glow 3s ease-in-out infinite;
}

.hero__title {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 6.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  animation: rise-in 0.9s 0.1s var(--ease-out) both;
}

.hero__title-accent {
  background: linear-gradient(105deg, #c4a8ff 0%, var(--primary-bright) 35%, var(--accent-warm) 75%, #ffd19a 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shine 6s ease-in-out infinite;
}

.hero__lead {
  margin: 0 auto 0.85rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 2.3vw, 1.3rem);
  animation: rise-in 0.9s 0.2s var(--ease-out) both;
}

.hero__meta {
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  color: rgba(232, 230, 240, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
  animation: rise-in 0.9s 0.24s var(--ease-out) both;
}

.hero__langs {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  animation: rise-in 0.9s 0.28s var(--ease-out) both;
}

.hero__langs li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(153, 109, 255, 0.35);
  box-shadow: 0 0 20px rgba(130, 87, 229, 0.15);
}

.hero__lang-icon {
  flex-shrink: 0;
  display: block;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  width: 100%;
  animation: rise-in 0.9s 0.36s var(--ease-out) both;
}

.hero__actions .btn {
  min-width: 10.5rem;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0 auto;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: rise-in 0.9s 0.4s var(--ease-out) both;
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary-bright);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* Trust ribbon */
.trust-ribbon {
  padding: 1.1rem 0;
  border-block: 1px solid var(--border);
  background: rgba(20, 17, 28, 0.72);
  backdrop-filter: blur(12px);
}

.trust-ribbon__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  text-align: center;
}

.trust-ribbon p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.trust-ribbon strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.text-grad {
  background: linear-gradient(105deg, var(--primary-bright), var(--accent-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-align: center;
}

.section__lead {
  margin: 0 auto 2.75rem;
  max-width: 36rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-bright);
}

/* Audience */
.audience {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(130, 87, 229, 0.12), transparent 70%),
    var(--bg);
}

.audience__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.5rem;
}

.why__card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease-out), border-color 0.25s ease;
}

.why__card:hover {
  transform: translateY(-3px);
  border-color: rgba(153, 109, 255, 0.4);
}

.why__name {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.audience__panel {
  padding: 1.85rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(153, 109, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease;
}

.audience__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(153, 109, 255, 0.45);
}

.audience__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8deff;
  background: rgba(130, 87, 229, 0.28);
  border: 1px solid rgba(153, 109, 255, 0.35);
}

.audience__tag--warm {
  color: #ffe4cc;
  background: rgba(255, 138, 61, 0.22);
  border-color: rgba(255, 138, 61, 0.4);
}

.audience__name {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.audience__text {
  margin: 0;
  color: var(--text-muted);
}

/* How */
.how__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how__item {
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(34, 211, 238, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease;
}

.how__item:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

.how__item::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 109, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.how__num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.how__name {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.how__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Product shots */
.product .shot,
.github .shot {
  margin: 0 0 2.5rem;
}

.shot {
  margin: 0;
}

.shot img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(153, 109, 255, 0.25);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  background: #121214;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s ease;
}

.shot.is-visible img {
  animation: shot-glow 4.5s ease-in-out infinite;
}

.shot__cap {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.shot__cap strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.shot--split {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(130, 87, 229, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
}

.shot--split .shot__media {
  justify-self: center;
  width: 100%;
  max-width: 260px;
}

.shot--split .shot__media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  background: transparent;
  animation: none;
}

.shot--split.is-visible .shot__media img {
  animation: none;
}

.shot__copy {
  margin: 0;
  text-align: left;
}

.shot__copy strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.shot__copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 28rem;
}

/* Community */
.community {
  background:
    radial-gradient(ellipse 55% 50% at 80% 40%, rgba(130, 87, 229, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(255, 138, 61, 0.08), transparent 55%),
    transparent;
}

.community__panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(130, 87, 229, 0.16), rgba(255, 255, 255, 0.03) 55%);
  border: 1px solid rgba(153, 109, 255, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 50px rgba(130, 87, 229, 0.12);
}

.community__headline {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  background: linear-gradient(
    90deg,
    #7c3aed 0%,
    #a78bfa 20%,
    #22d3ee 40%,
    #f8fafc 50%,
    #22d3ee 60%,
    #ff8a3d 80%,
    #7c3aed 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ai-shine-ltr 2.8s linear infinite;
}

.community__text {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.community__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.community__points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.community__points strong {
  color: var(--text);
}

.community__point-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #0c0a14;
  background: linear-gradient(135deg, var(--primary-bright), var(--accent-warm));
  font-weight: 800;
}

.community__media {
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}

.community__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(153, 109, 255, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(130, 87, 229, 0.2);
  background: #121214;
}

.community__cap {
  margin-top: 0.85rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.github__shots {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot--tight {
  margin: 0;
}

/* Growth */
.growth-only {
  background:
    linear-gradient(180deg, transparent, rgba(255, 138, 61, 0.06), transparent),
    var(--bg);
}

.growth-only__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.growth-feature__img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.growth-feature__name {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.growth-feature__text {
  margin: 0;
  color: var(--text-muted);
}

.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(153, 109, 255, 0.14), rgba(255, 255, 255, 0.02) 55%),
    var(--bg-elevated);
  border: 1px solid rgba(153, 109, 255, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(153, 109, 255, 0.55);
  box-shadow: 0 18px 40px rgba(99, 59, 188, 0.3);
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #5865f2, #8257e5);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.35);
}

.benefit-card__icon--warm {
  background: linear-gradient(145deg, #ff8a3d, #e15a1a);
  box-shadow: 0 8px 20px rgba(255, 138, 61, 0.35);
}

.benefit-card__icon--cyan {
  background: linear-gradient(145deg, #22d3ee, #0891b2);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

.benefit-card__title {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.benefit-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mid-cta {
  text-align: center;
}

/* Founders */
.founders__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-inline: auto;
}

.founder {
  text-align: center;
}

.founder__photo {
  width: min(240px, 72%);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 1.15rem;
  border-radius: 32px;
  border: 2px solid rgba(153, 109, 255, 0.45);
  box-shadow:
    0 0 0 8px rgba(130, 87, 229, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 138, 61, 0.12);
  transition: transform 0.4s var(--ease-out);
}

.founder:hover .founder__photo {
  transform: scale(1.03);
}

.founder__name {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.founder__role {
  margin: 0 0 0.65rem;
  color: var(--primary-bright);
  font-weight: 600;
  font-size: 0.95rem;
}

.founder__bio {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Plans */
.plans {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(130, 87, 229, 0.18), transparent 65%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.billing {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.billing__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}

.billing__option {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.billing__option--active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.billing__discount {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0c0a14;
  background: var(--accent-warm);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.billing__switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
  padding: 0;
}

.billing__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s var(--ease-out);
}

.billing__thumb--annual {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-skeleton {
  min-height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--surface), #2a2438, var(--surface));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  border: 1px solid var(--border);
}

.pricing-skeleton--featured {
  transform: scale(1.02);
}

.guarantee-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  margin: -0.5rem auto 1.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  color: #d8ffe8;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.12);
}

.guarantee-pill__icon {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--success);
  color: #052e16;
  font-size: 0.75rem;
  font-weight: 800;
}

.pricing-card {
  position: relative;
  padding: 1.9rem 1.55rem 1.55rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(12, 10, 20, 0.88);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(153, 109, 255, 0.65);
  box-shadow:
    0 0 0 1px rgba(153, 109, 255, 0.3),
    0 28px 60px rgba(99, 59, 188, 0.4),
    0 0 80px rgba(130, 87, 229, 0.18);
  background:
    linear-gradient(165deg, rgba(130, 87, 229, 0.28), transparent 48%),
    rgba(12, 10, 20, 0.92);
  transform: scale(1.04);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card__name {
  margin: 0.5rem 0 0;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.pricing-card__price {
  font-family: var(--display);
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plans__trust-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.plans__trust-list li {
  text-align: center;
  padding: 0.85rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.pricing-card__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-warm), #ff6b2c);
  color: #1a0f08;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 2.8em;
}

.pricing-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.6rem;
  margin: 0.35rem 0 0.5rem;
}

.pricing-card__price-original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.pricing-card__period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-card__annual-total {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.pricing-card__features-title {
  margin: 0.5rem 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.pricing-card__feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.pricing-card__feature {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-card__feature--included {
  color: var(--text);
}

.pricing-card__feature--excluded,
.pricing-card__feature--strikethrough {
  opacity: 0.45;
}

.pricing-card__feature--strikethrough .pricing-card__feature-label {
  text-decoration: line-through;
}

.pricing-card__feature--highlighted .pricing-card__feature-premium-text {
  font-weight: 800;
  letter-spacing: 0.01em;
  background-image: linear-gradient(
    90deg,
    #7c3aed 0%,
    #a78bfa 18%,
    #22d3ee 36%,
    #f8fafc 50%,
    #22d3ee 64%,
    #ff8a3d 82%,
    #7c3aed 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ai-shine-ltr 2.4s linear infinite;
  filter: drop-shadow(0 0 10px rgba(153, 109, 255, 0.45));
}

.pricing-card__feature--highlighted .pricing-card__feature-icon {
  color: #c4b5fd;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.55));
  animation: ai-icon-pulse 2.4s ease-in-out infinite;
}

.pricing-card__feature-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-bright);
  margin-top: 0.1rem;
}

.pricing-card__feature--excluded .pricing-card__feature-icon {
  color: var(--text-muted);
}

.pricing-card__cta {
  margin-top: 0.35rem;
}

.pricing-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

/* FAQ */
.faq__list {
  display: grid;
  gap: 0.65rem;
}

.faq__item {
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 650;
  font-size: 1.05rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq__question::after {
  content: "+";
  font-family: var(--mono);
  color: var(--primary-bright);
  font-size: 1.25rem;
  line-height: 1;
}

.faq__item--open .faq__question::after {
  content: "-";
}

.faq__answer {
  padding: 0 1.2rem 1.15rem;
  color: var(--text-muted);
}

.faq__answer p {
  margin: 0;
}

/* Close */
.close {
  text-align: center;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(130, 87, 229, 0.28), transparent 70%),
    transparent;
}

.close__panel {
  padding: 2.5rem 1.75rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(160deg, rgba(130, 87, 229, 0.2), rgba(255, 138, 61, 0.08) 55%, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(153, 109, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.close .section__lead {
  margin-bottom: 1.25rem;
}

.close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.close__actions .btn {
  min-width: 10.5rem;
}

.close__guarantee {
  margin: 0;
  color: var(--success);
  font-size: 0.98rem;
  font-weight: 600;
}

.mid-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(153, 109, 255, 0.3);
  background:
    linear-gradient(160deg, rgba(130, 87, 229, 0.18), rgba(255, 138, 61, 0.06) 60%, transparent);
}

.mid-cta__text {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.mid-cta__actions .btn {
  min-width: 10.5rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #09070f;
}

.site-footer__inner {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 700;
}

.site-footer__copy,
.site-footer__links {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--primary-bright);
}

/* WhatsApp */
.whatsapp-help[hidden],
.whatsapp-help__toast[hidden],
.whatsapp-help__fab[hidden],
.whatsapp-help__typing[hidden],
.whatsapp-help__message[hidden] {
  display: none !important;
}

.whatsapp-help {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-help__toast {
  width: min(300px, calc(100vw - 2.5rem));
  background: #16121f;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  position: relative;
  animation: whatsapp-toast-in 0.55s var(--ease-out) both;
}

.whatsapp-help__toast--out {
  animation: whatsapp-toast-out 0.3s ease forwards;
}

.whatsapp-help__close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

.whatsapp-help__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.12);
  display: grid;
  place-items: center;
}

.whatsapp-help__typing {
  display: flex;
  gap: 0.3rem;
  padding: 0.55rem 0;
}

.whatsapp-help__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: whatsapp-typing 1.2s ease-in-out infinite;
}

.whatsapp-help__typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.whatsapp-help__typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.whatsapp-help__message--in {
  animation: whatsapp-message-in 0.4s ease both;
}

.whatsapp-help__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 0.98rem;
}

.whatsapp-help__text {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.whatsapp-help__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--wa);
  color: #063816;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.whatsapp-help__fab {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.whatsapp-help__fab--visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-help__fab:hover {
  transform: scale(1.06);
}

.whatsapp-help__fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsapp-fab-pulse 2.2s ease-out infinite;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.is-samsung .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Animations */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.05);
  }
}

@keyframes grid-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(64px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes shot-glow {
  0%,
  100% {
    box-shadow: var(--shadow);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 28px 70px rgba(130, 87, 229, 0.28);
    transform: translateY(-4px);
  }
}

@keyframes ai-shine-ltr {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}

@keyframes ai-icon-pulse {
  0%,
  100% {
    color: #a78bfa;
    filter: drop-shadow(0 0 4px rgba(130, 87, 229, 0.4));
  }
  50% {
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.7));
  }
}

@keyframes aurora-shift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-3%, 2%) scale(1.08);
  }
}

@keyframes bg-orb-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 60px);
  }
}

@keyframes bg-orb-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, -40px);
  }
}

@keyframes bg-orb-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -50px) scale(1.15);
  }
}

@keyframes stars-twinkle {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(130, 87, 229, 0.4);
  }
  50% {
    box-shadow: 0 14px 42px rgba(153, 109, 255, 0.7);
  }
}

@keyframes title-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes mark-glow {
  0%,
  100% {
    box-shadow:
      0 0 28px rgba(34, 211, 238, 0.35),
      0 0 48px rgba(130, 87, 229, 0.25);
  }
  50% {
    box-shadow:
      0 0 36px rgba(34, 211, 238, 0.55),
      0 0 64px rgba(130, 87, 229, 0.4);
  }
}

@keyframes whatsapp-toast-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes whatsapp-toast-out {
  to {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
}

@keyframes whatsapp-message-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes whatsapp-typing {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes whatsapp-fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__orb,
  .hero__grid,
  .hero__brand,
  .hero__title,
  .hero__title-accent,
  .hero__lead,
  .hero__meta,
  .hero__langs,
  .hero__actions,
  .hero__scroll,
  .hero__scroll-mouse::after,
  .hero__mark,
  .hero .btn,
  .btn--glow,
  .pricing-skeleton,
  .shot.is-visible img,
  .page-bg__aurora,
  .page-bg__orb,
  .page-bg__stars,
  .community__headline,
  .pricing-card__feature--highlighted .pricing-card__feature-premium-text,
  .pricing-card__feature--highlighted .pricing-card__feature-icon,
  .whatsapp-help__fab-pulse,
  .whatsapp-help__typing span,
  .whatsapp-help__toast,
  .whatsapp-help__message--in {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .audience__grid,
  .why__grid,
  .how__list,
  .github__shots,
  .growth-only__grid,
  .founders__grid,
  .pricing-grid,
  .benefit-grid,
  .shot--split,
  .trust-ribbon__inner,
  .plans__trust-list,
  .community__panel {
    grid-template-columns: 1fr;
  }

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

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

  .community__media {
    max-width: 360px;
    order: -1;
  }

  .shot--split {
    text-align: center;
  }

  .shot__copy {
    text-align: center;
  }

  .shot__copy p {
    margin-inline: auto;
  }

  .shot--split .shot__media {
    max-width: 220px;
  }

  .pricing-card--featured,
  .pricing-skeleton--featured {
    transform: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 640px) {
  .whatsapp-help__toast {
    display: none !important;
  }

  .whatsapp-help__fab {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .brand-bar__inner {
    gap: 0.65rem;
  }

  .brand-bar__cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }

  .hero__actions,
  .mid-cta__actions,
  .close__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .mid-cta__actions .btn,
  .close__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-help {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}
