/* ============================================================
   ASKNPIC — Shared Stylesheet
   Palette : #b8358b · #090814 · #2f2e41 · #3f3d56
============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --magenta: #b8358b;
  --magenta-hover: #9a2875;
  --magenta-light: rgba(184, 53, 139, .12);
  --magenta-glow: rgba(184, 53, 139, .25);
  --warning: #f44336;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 32px rgba(0, 0, 0, .22);
  --shadow-glow: 0 0 48px rgba(184, 53, 139, .18);
  --nav-h: 72px;
  --section-pad: 116px;
}

/* LIGHT */
[data-theme="light"] {
  --bg: #f7f7fb;
  --bg-alt: #ffffff;
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, .07);
  --text-primary: #0d0c1e;
  --text-sec: #3f3d56;
  --text-muted: #6b6984;
  --nav-bg: rgba(247, 247, 251, .92);
  --divider: rgba(0, 0, 0, .07);
  --badge-bg: rgba(184, 53, 139, .1);
  --badge-color: #8a1f6a;
  --input-bg: #f0f0f7;
  --input-border: rgba(0, 0, 0, .12);
}

/* DARK */
[data-theme="dark"] {
  --bg: #090814;
  --bg-alt: #0f0d1e;
  --card-bg: #141228;
  --card-border: rgba(255, 255, 255, .07);
  --text-primary: #ffffff;
  --text-sec: #b0aec8;
  --text-muted: #6d6b87;
  --nav-bg: rgba(9, 8, 20, .92);
  --divider: rgba(255, 255, 255, .07);
  --badge-bg: rgba(184, 53, 139, .15);
  --badge-color: #e070c0;
  --input-bg: rgba(255, 255, 255, .05);
  --input-border: rgba(255, 255, 255, .12);
}

/* --- RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}

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

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

button {
  cursor: pointer;
  font-family: var(--font-body);
}

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
.t-hero {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.t-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.t-h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

.text-magenta {
  color: var(--magenta);
}

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

.text-sec {
  color: var(--text-sec);
}

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

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: 72px 0;
}

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--magenta);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Lang switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-pill);
  padding: 3px;
  overflow: hidden;
}

.lang-switch a {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
}

.lang-switch a.active {
  background: var(--magenta);
  color: #fff;
}

.lang-switch a:hover:not(.active) {
  color: var(--magenta);
}

/* Theme toggle */
.theme-toggle {
  width: 44px;
  height: 24px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-pill);
  position: relative;
  flex-shrink: 0;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--magenta);
  transition: transform .25s;
}

[data-theme="light"] .theme-toggle::after {
  transform: translateX(20px);
}

.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .8rem;
}

.btn-nav {
  padding: 9px 20px;
  background: var(--magenta);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--magenta-hover);
  transform: translateY(-1px);
}

/* --- BUTTONS --- */
.btn-primary {
  padding: 14px 28px;
  background: var(--magenta);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--magenta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--magenta-glow);
}

/* --- HERO --- */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(184, 53, 139, .18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--badge-bg);
  color: var(--badge-color);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(184, 53, 139, .2);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--warning);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--magenta);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-sec);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

/* Hero form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input[type="email"],
.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-row input[type="email"]:focus,
.waitlist-form input[type="email"]:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px var(--magenta-glow);
}

.form-row input::placeholder,
.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
}

.hero-trust svg {
  color: var(--magenta);
  flex-shrink: 0;
}

.hero-trust strong {
  color: var(--text-sec);
}

/* Hero video */
.hero-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  aspect-ratio: 16/10;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(184, 53, 139, .08) 100%);
}

.video-placeholder-icon {
  width: 72px;
  height: 72px;
  background: var(--magenta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(184, 53, 139, .3);
}

.video-placeholder-icon svg {
  color: var(--magenta);
}

.video-placeholder p {
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
}

/* --- PAIN SECTION --- */
.bg-alt {
  background: var(--bg-alt);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .2s, transform .2s;
}

.pain-card:hover {
  border-color: rgba(184, 53, 139, .3);
  transform: translateY(-2px);
}

.pain-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--magenta-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: .92rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.how-steps::before,
.how-steps::after {
  content: '';
  position: absolute;
  top: 36px;
  height: 2px;
  background: var(--magenta);
  opacity: .2;
}

.how-steps::before {
  left: calc(33.33%);
  width: 33.33%;
}

.how-steps::after {
  left: calc(66.66%);
  width: 33.34%;
}

.step {
  text-align: center;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid rgba(184, 53, 139, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--magenta);
  position: relative;
  z-index: 1;
}

.step-word {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--magenta);
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: .92rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* --- USE CASES --- */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-sec);
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.tab-btn:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.tab-btn.active {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

.tab-panels {
  min-height: 320px;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tab-panel.active {
  display: grid;
}

.tab-visual {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tab-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--card-bg), rgba(184, 53, 139, .06));
}

.tab-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tab-content p {
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tab-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 12px;
  background: var(--magenta-light);
  color: var(--magenta);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(184, 53, 139, .2);
}

/* --- ETHICS --- */
.ethics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.ethics-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.ethics-card:hover {
  border-color: rgba(184, 53, 139, .25);
  transform: translateY(-2px);
}

.ethics-card-icon {
  width: 44px;
  height: 44px;
  background: var(--magenta-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.ethics-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ethics-card p {
  font-size: .88rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s, transform .2s;
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--magenta);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-sec);
  padding: 7px 0;
  border-bottom: 1px solid var(--divider);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  color: var(--magenta);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  padding: 11px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
  background: var(--input-bg);
  color: var(--text-primary);
  border: 1px solid var(--input-border);
  transition: opacity .2s;
  display: block;
}

.pricing-card.featured .pricing-cta {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

.pricing-cta:hover {
  opacity: .85;
}

/* --- WAITLIST --- */
.waitlist {
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(184, 53, 139, .15) 0%, transparent 65%);
  pointer-events: none;
}

.waitlist-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.waitlist-card .t-h2 {
  margin-bottom: 16px;
}

.waitlist-card .section-intro {
  margin: 0 auto 40px;
}

.engagement-toggle {
  display: flex;
  gap: 0;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin: 0 auto 28px;
  max-width: 480px;
}

.engagement-toggle label {
  flex: 1;
  cursor: pointer;
}

.engagement-toggle input[type="radio"] {
  display: none;
}

.engagement-toggle .toggle-label {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-sec);
  text-align: center;
  transition: all .2s;
}

.engagement-toggle input[type="radio"]:checked+.toggle-label {
  background: var(--magenta);
  color: #fff;
  font-weight: 600;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  text-align: center;
  padding: 15px 22px;
}

.waitlist-form .btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.waitlist-perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--divider);
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
}

.perk svg {
  color: var(--magenta);
  flex-shrink: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(184, 53, 139, .1);
  border: 1px solid rgba(184, 53, 139, .2);
  border-radius: var(--radius);
  color: var(--text-primary);
}

.form-success.visible {
  display: block;
}

.form-success .success-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* --- ABOUT --- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.about-avatar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.about-avatar-initials {
  width: 80px;
  height: 80px;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.about-avatar-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.about-avatar-role {
  font-size: .85rem;
  color: var(--text-muted);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-tag {
  padding: 5px 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  color: var(--text-sec);
}

/* --- FOOTER --- */
footer {
  background: #060510;
  color: #fff;
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--magenta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
}

.footer-hosting {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

.footer-hosting span {
  color: var(--magenta);
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* --- TOAST --- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a1830;
  border: 1px solid rgba(184, 53, 139, .3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #fff;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.22, .61, .36, 1);
  z-index: 200;
  max-width: 340px;
}

.toast.show {
  transform: none;
  opacity: 1;
}

/* --- RESPONSIVE --- */
@media (max-width:1024px) {
  :root {
    --section-pad: 88px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ethics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  :root {
    --section-pad: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    order: -1;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-steps::before,
  .how-steps::after {
    display: none;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }

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

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

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

  .waitlist-card {
    padding: 36px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .engagement-toggle {
    flex-direction: column;
  }
}

@media (max-width:480px) {
  .form-row {
    flex-direction: column;
  }

  .nav-actions .btn-nav {
    display: none;
  }

  .lang-switch a {
    padding: 5px 8px;
    font-size: .75rem;
  }
}