/* ========================================================================
   Somni — premium one-pager
   Design tokens, layout, components, mockups, responsive
   ======================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #0b0f1a;
  --bg-2: #121826;
  --bg-3: #0f1422;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);

  --text: #ffffff;
  --text-2: #a0a8c0;
  --text-3: #6b7488;

  --violet: #7c5cff;
  --blue: #4da6ff;
  --grad: linear-gradient(135deg, #7c5cff 0%, #4da6ff 100%);
  --grad-soft: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.18) 0%,
    rgba(77, 166, 255, 0.18) 100%
  );

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 30px 80px -20px rgba(124, 92, 255, 0.45),
    0 20px 60px -30px rgba(77, 166, 255, 0.4);

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  font-feature-settings: "ss01", "cv11";
}
/* Belt-and-suspenders: prevent any decorative element (moon glow, blobs,
   floating cards) from creating horizontal scroll when the user zooms in
   or out on mobile, which manifests as uneven left/right page margins. */
html {
  overflow-x: clip;
  max-width: 100vw;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
button {
  font-family: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Ambient background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.blob-1 {
  width: 620px;
  height: 620px;
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, #7c5cff 0%, transparent 65%);
  animation: float-a 22s ease-in-out infinite;
}
.blob-2 {
  width: 560px;
  height: 560px;
  top: 10%;
  right: -180px;
  background: radial-gradient(circle, #4da6ff 0%, transparent 65%);
  opacity: 0.45;
  animation: float-b 26s ease-in-out infinite;
}
.blob-3 {
  width: 700px;
  height: 700px;
  bottom: -260px;
  left: 30%;
  background: radial-gradient(circle, #5a3fff 0%, transparent 65%);
  opacity: 0.3;
  animation: float-a 32s ease-in-out infinite reverse;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(40px, 60px, 0) scale(1.08); }
}
@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-50px, 40px, 0) scale(1.05); }
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.site-header .container,
.site-header a,
.site-header nav,
.site-header button {
  pointer-events: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.2s var(--ease);
}
.logo:hover .logo-img { opacity: 0.85; }
.site-footer .logo-img { height: 28px; }
.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-2);
}
.site-nav a {
  position: relative;
  transition: color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--text); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-2); }
.btn-primary {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124, 92, 255, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(124, 92, 255, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}
.btn-primary:active { transform: translateY(0); }
.header-cta { display: inline-flex; }

/* ---------- Section helpers ---------- */
section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 22px;
}
.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.022em;
}
.section-sub {
  margin-top: 16px;
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--text-2); font-weight: 500; display: block; }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4da6ff;
  box-shadow: 0 0 12px #4da6ff;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
.hero-title {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.hero-sub {
  margin-top: 22px;
  color: var(--text-2);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  max-width: 520px;
}

/* ---------- Email form ---------- */
.email-form {
  margin-top: 32px;
  max-width: 480px;
}

/* Card pitch (eyebrow + short title) lives inside the email card on mobile only */
.card-pitch { display: none; }
.card-pitch .card-title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
  color: #fff;
}
.card-pitch .card-sub {
  margin: -8px 0 20px;
  color: var(--text-2);
  font-size: 14px;
}

/* Small "peek" caption sits between the email card and the phone — mobile only */
.hero-peek { display: none; }
.label-mobile { display: none; }
.email-field {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.email-field:focus-within {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}
.email-icon {
  color: var(--text-3);
  flex-shrink: 0;
}
.email-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  font-size: 15px;
  padding: 12px 8px;
}
.email-field input::placeholder { color: var(--text-3); }
.email-field .btn { padding: 11px 18px; }
.form-hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-3);
  padding-left: 4px;
}
.form-success {
  margin-top: 10px;
  font-size: 13px;
  color: #7eedb0;
  min-height: 18px;
  padding-left: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-2);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust svg { color: var(--blue); opacity: 0.85; }

/* ---------- Hero phone ---------- */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}
.phone-frame {
  position: relative;
  width: 320px;
  height: 640px;
}
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  margin-top: -260px;
  margin-left: -260px;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.45) 0%,
    rgba(77, 166, 255, 0.25) 35%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #1a2238 0%, #0d1322 100%);
  border-radius: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 50px 100px -30px rgba(0, 0, 0, 0.7),
    0 30px 80px -20px rgba(124, 92, 255, 0.35);
  z-index: 1;
  animation: float-phone 8s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #050810;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f1424 0%, #0a0f1c 60%, #0b1020 100%);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 0;
  position: relative;
  font-size: 12px;
}
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 8px 12px 14px;
  margin-bottom: 4px;
}
.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  padding: 0 4px;
}
.app-greet {
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 2px;
}
.app-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(124, 92, 255, 0.6);
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 10px;
  backdrop-filter: blur(20px);
}

.score-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.18) 0%,
    rgba(77, 166, 255, 0.08) 100%
  );
  border-color: rgba(124, 92, 255, 0.25);
}
.score-ring {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}
.score-ring svg { width: 88px; height: 88px; }
.ring-progress {
  stroke-dasharray: 314.16;
  stroke-dashoffset: 87.96; /* ~72% */
  animation: ring-fill 1.6s var(--ease) forwards;
}
@keyframes ring-fill {
  from { stroke-dashoffset: 314.16; }
  to   { stroke-dashoffset: 87.96; }
}
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  gap: 3px;
}
.ring-label strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ring-label strong span { font-size: 10px; opacity: 0.7; margin-left: 1px; font-weight: 600; }
.ring-cap {
  display: block;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  line-height: 1;
}
.score-meta { flex: 1; min-width: 0; }
.score-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.score-sub {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.4;
  margin-bottom: 8px;
}
.score-tags { display: flex; gap: 6px; }
.tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}
.tag-violet {
  background: rgba(124, 92, 255, 0.18);
  color: #c0aeff;
  border-color: rgba(124, 92, 255, 0.3);
}
.tag-blue {
  background: rgba(77, 166, 255, 0.18);
  color: #aed3ff;
  border-color: rgba(77, 166, 255, 0.3);
}
.tag-soft {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  border-color: rgba(255, 255, 255, 0.1);
}

.calendar-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.card-title { font-size: 13px; font-weight: 600; }
.card-sub { font-size: 10px; color: var(--text-2); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 9px;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 6px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  transition: transform 0.2s var(--ease);
}
.cal-cell.lvl-1 { background: rgba(124, 92, 255, 0.22); }
.cal-cell.lvl-2 { background: rgba(124, 92, 255, 0.4); }
.cal-cell.lvl-3 { background: linear-gradient(135deg, #7c5cff, #4da6ff); }
.cal-cell.lvl-4 {
  background: linear-gradient(135deg, #7c5cff, #4da6ff);
  box-shadow: 0 0 10px rgba(124, 92, 255, 0.5);
}

.recap-card {
  background: rgba(77, 166, 255, 0.06);
  border-color: rgba(77, 166, 255, 0.15);
}
.recap-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.recap-icon {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
}
.recap-arrow { margin-left: auto; color: var(--text-2); font-size: 14px; }
.recap-text {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 10px;
}
.recap-text em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
.recap-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}
.recap-bars span {
  flex: 1;
  height: var(--h);
  background: var(--grad);
  border-radius: 3px;
  opacity: 0.85;
}
.recap-bars span:nth-child(odd) { opacity: 0.55; }

.tab-bar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: 64px;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-inline: -16px;
  padding-inline: 16px;
}
.tab {
  display: grid;
  place-items: center;
  color: var(--text-3);
  height: 44px;
}
.tab.active { color: #fff; }
.tab-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  margin-inline: auto;
  box-shadow: 0 8px 22px -6px rgba(124, 92, 255, 0.6);
}

/* Floating cards next to phone */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(18, 24, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  z-index: 2;
  font-size: 12px;
  animation: float-c 6s ease-in-out infinite;
}
.float-card-1 {
  top: 14%;
  right: 100%;
  margin-right: 18px;
  white-space: nowrap;
}
.float-card-2 {
  bottom: 18%;
  left: 100%;
  margin-left: 18px;
  white-space: nowrap;
  animation-delay: -2s;
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7eedb0;
  box-shadow: 0 0 10px #7eedb0;
}
.fc-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
}
.fc-title { font-size: 12px; font-weight: 600; line-height: 1.2; }
.fc-sub { font-size: 11px; color: var(--text-2); margin-top: 2px; }

/* ---------- Problem ---------- */
.problem { padding-top: clamp(40px, 6vw, 60px); padding-bottom: clamp(80px, 8vw, 100px); }
.problem-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.problem .section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
}
.quote-list {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.quote-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.quote-list li p {
  font-style: italic;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.quote-list li:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
}
.quote-mark {
  display: inline-block;
  font-size: 32px;
  font-style: normal;
  font-family: Georgia, serif;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.6;
  height: 18px;
}
.problem-tag {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-2);
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.feature-card {
  position: relative;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 0%),
    rgba(124, 92, 255, 0.18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.35);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: #c0aeff;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ---------- Preview stage ---------- */
.preview-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
}
.ui-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.ui-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
}
.ui-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.ui-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.ui-card h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ui-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.heatmap-card { grid-row: span 2; }
.heatmap {
  display: grid;
  grid-template-columns: repeat(26, 1fr);
  grid-auto-rows: 1fr;
  gap: 4px;
  aspect-ratio: 26 / 7;
  margin-bottom: 18px;
}
.heatmap span {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s var(--ease);
}
.heatmap span.l1 { background: rgba(124, 92, 255, 0.18); }
.heatmap span.l2 { background: rgba(124, 92, 255, 0.4); }
.heatmap span.l3 { background: linear-gradient(135deg, #7c5cff, #4da6ff); }
.heatmap span.l4 {
  background: linear-gradient(135deg, #9d83ff, #6dbcff);
  box-shadow: 0 0 8px rgba(124, 92, 255, 0.4);
}
.heatmap-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-3);
}
.legend-bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 92, 255, 0.1) 0%,
    #7c5cff 50%,
    #4da6ff 100%
  );
}
.emotion-list {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.emotion-list li {
  display: grid;
  grid-template-columns: 8px 90px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
}
.emotion-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c, #7c5cff);
  box-shadow: 0 0 8px var(--c, #7c5cff);
}
.emotion-name { font-weight: 500; color: var(--text); }
.emotion-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.emotion-bar > span {
  display: block;
  height: 100%;
  background: var(--grad);
  border-radius: 999px;
}
.emotion-pct {
  font-size: 12px;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

.detail-card .emotion-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.15);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: #c0aeff;
}
.emotion-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c0aeff;
  box-shadow: 0 0 8px #7c5cff;
}
.detail-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 18px;
}
.detail-body em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.detail-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.detail-label {
  font-size: 12px;
  color: var(--text-3);
  white-space: nowrap;
}
.bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  background: var(--grad);
  border-radius: 999px;
}

.summary-card .trend-up {
  font-size: 13px;
  font-weight: 600;
  color: #7eedb0;
  background: rgba(126, 237, 176, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 237, 176, 0.2);
}
.summary-chart {
  height: 100px;
  margin-bottom: 18px;
}
.summary-chart svg { width: 100%; height: 100%; }
.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.summary-stats li {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.summary-stats strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.summary-stats span {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  z-index: 1;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.step-num {
  display: none;
}
.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 92, 255, 0.25);
  display: grid;
  place-items: center;
  color: #c0aeff;
  margin-bottom: 22px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq { padding-top: clamp(60px, 7vw, 110px); padding-bottom: clamp(60px, 7vw, 110px); }
.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.12); }
.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: #c0aeff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item details[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(124, 92, 255, 0.22);
}
.faq-item details > p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta { padding-bottom: clamp(80px, 10vw, 140px); }
.cta-card {
  position: relative;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 92, 255, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border-2);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  isolation: isolate;
}
.cta-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1px 1px at 32% 78%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 52% 32%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1px 1px at 72% 62%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1.2px 1.2px at 88% 22%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 22% 52%, rgba(255,255,255,0.4), transparent 60%);
  animation: twinkle 4s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes twinkle {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
.cta-title {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin-bottom: 14px;
}
.cta-sub {
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 520px;
  margin: 0 auto 32px;
}
.email-form-lg {
  margin: 0 auto;
}
.email-form-lg .email-field {
  padding: 8px 8px 8px 18px;
}
.email-form-lg .email-field input {
  font-size: 16px;
  padding: 14px 8px;
}
.email-form-lg .email-field .btn { padding: 13px 22px; font-size: 14px; }

.cta-stats {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-stats > div { display: flex; flex-direction: column; }
.cta-stats strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cta-stats span {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.cta-stats .divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero variant: smaller, lives inside the form card */
.hero-stats {
  margin-top: 18px;
  gap: 18px;
}
.hero-stats strong { font-size: 15px; }
.hero-stats span { font-size: 11px; }
.hero-stats .divider { height: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--text-2);
}
.footer-links a:hover { color: #fff; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-copy { max-width: 100%; }
  .hero-visual { min-height: 580px; }
  .preview-stage {
    grid-template-columns: 1fr;
  }
  .heatmap-card { grid-row: auto; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body main#top {
    display: flex;
    flex-direction: column;
  }
  body main#top > .hero { order: 1; }
  body main#top > .how { order: 2; }
  /* Preview ("A clean window into your subconscious") sits right above
     Features ("A quiet system for a noisy mind") on mobile. */
  body main#top > .preview { order: 3; }
  body main#top > .features { order: 4; }
  body main#top > .problem { order: 5; }
  body main#top > .faq { order: 6; }
  body main#top > .final-cta { order: 7; }

  .site-nav { display: none; }
  .header-cta { display: none; }
  .header-inner {
    justify-content: center;
    height: 70px;
  }
  .logo-img { height: 38px; }
  .site-header.scrolled {
    background: rgba(7, 10, 19, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  /* Tone down ambient glow on mobile so the top of the page is calmer */
  .blob-1 {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -140px;
    opacity: 0.18;
  }
  .blob-2 {
    width: 320px;
    height: 320px;
    opacity: 0.14;
  }
  .blob-3 { opacity: 0.12; }
  .grid-overlay { opacity: 0.4; }

  /* Hide trust strip on mobile */
  .hero-trust { display: none; }

  /* === Mobile decluttering: form is the hero === */
  /* Hide the long subhead — too much text. Title + form do the talking. */
  .hero-sub { display: none; }

  /* Hide problem quote cards — keep the heading + closer line for the emotional hook */
  .quote-list { display: none; }
  .problem-tag { margin-top: 28px; }
  .problem { padding-top: 72px; }

  /* Hide the wide heatmap card in the App Preview — keep detail + weekly summary */
  .heatmap-card { display: none; }

  /* Tighter section rhythm on mobile */
  section { padding: 64px 0; }
  .how {
    padding-top: 52px;
    padding-bottom: 58px;
  }
  .how .section-head { margin-bottom: 28px; }
  .how .section-title { font-size: 34px; }
  .desktop-friction { display: none; }

  /* Hero: tighter spacing on mobile. Eyebrow/title move inside the card. */
  .hero {
    padding-top: 24px;
    padding-bottom: 48px;
    margin-top: -20px;
  }
  .hero-grid { gap: 42px; }

  /* Hide the original eyebrow + title in hero-copy on mobile (they live inside the card) */
  .hero-copy > .eyebrow,
  .hero-copy > .hero-title { display: none; }

  /* Show the in-card pitch on mobile */
  .card-pitch { display: block; text-align: center; margin-bottom: 8px; }
  .card-pitch .eyebrow { margin: 0 auto; }
  .card-pitch .card-title {
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.02;
    margin: 16px 0 14px;
  }
  .card-pitch .card-sub {
    font-size: 15px;
    margin: 0 0 22px;
  }

  /* === Mobile hero email form: glowing CTA-style card with moon accent === */
  .email-form[data-form="hero"] {
    position: relative;
    margin: 0 auto;
    padding: 24px 16px 20px;
    border-radius: 30px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(124, 92, 255, 0.36), transparent 64%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-2);
    box-shadow: 0 26px 70px rgba(124, 92, 255, 0.24), var(--shadow-glow);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    /* Slightly wider than the phone so the card feels prominent */
    max-width: 374px;
    width: 100%;
  }
  /* Moon peeks softly from behind — a quiet accent, not a wash */
  .email-form[data-form="hero"]::before {
    content: "";
    position: absolute;
    top: auto;
    right: -32%;
    bottom: -46%;
    width: 92%;
    aspect-ratio: 1;
    background: url("moon.png") no-repeat center / contain;
    opacity: 0.32;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  .email-form[data-form="hero"] .form-hint,
  .email-form[data-form="hero"] .email-field,
  .email-form[data-form="hero"] .card-pitch,
  .email-form[data-form="hero"] .hero-stats {
    position: relative;
    z-index: 1;
  }
  /* Tighter stat spacing inside the narrow card */
  .email-form[data-form="hero"] .hero-stats {
    margin-top: 14px;
    gap: 18px;
  }
  .email-form[data-form="hero"] .hero-stats strong { font-size: 14px; }
  .email-form[data-form="hero"] .hero-stats span { font-size: 10.5px; }
  .email-form[data-form="hero"] .form-hint {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
  }

  /* Small caption between the email card and phone — mobile only */
  .hero-peek {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 -8px;
    color: var(--text-2);
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
    animation: peek-bob 2.4s ease-in-out infinite;
  }
  .hero-peek svg { opacity: 0.7; }
  @keyframes peek-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
  }

  /* === Split input + button into two separate pills on mobile === */
  .email-field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .email-field:focus-within {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .email-field input {
    width: 100%;
    flex: none;
    padding: 14px 18px;
    font-size: 16px;
    text-align: center;
    background: rgba(12, 17, 31, 0.78);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  }
  .email-field input:focus {
    border-color: rgba(124, 92, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.14);
    outline: 0;
  }
  .email-field .btn {
    width: 100%;
    flex: none;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: 15px;
    justify-content: center;
  }
  .email-form[data-form="hero"] .label-desktop { display: none; }
  .email-form[data-form="hero"] .label-mobile { display: inline; }
  .email-icon { display: none; }

  /* On mobile the phone sits below the fold, so the IntersectionObserver
     won't trigger until the user scrolls. Render it instantly so visitors
     never see a blank slot below the form on first paint. */
  .hero-visual.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Float cards next to the phone — keep them subtle on mobile */
  .float-card {
    transform: scale(0.9);
    transform-origin: top left;
  }
  .float-card-1 {
    right: auto;
    left: -10px;
    margin-right: 0;
    top: -10px;
  }
  .float-card-2 {
    left: auto;
    right: -10px;
    margin-left: 0;
    bottom: 10%;
    transform-origin: top right;
  }

  /* Soften secondary section copy a touch on mobile */
  .section-eyebrow { font-size: 11px; }
  .section-title { font-size: 30px; }
  .section-sub { font-size: 15px; }
  .problem-text { font-size: 22px; line-height: 1.35; }

  /* === Compact "How it works" steps on mobile === */
  .steps { gap: 12px; }
  .step {
    padding: 18px 18px 16px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
  }
  .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    margin-bottom: 0;
    grid-row: span 2;
  }
  .step h3 {
    font-size: 15.5px;
    margin-bottom: 2px;
  }
  .step p {
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text-2);
  }

  /* === Compact Features cards on mobile === */
  .feature-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 18px 18px 16px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    margin-bottom: 0;
    grid-row: span 2;
  }
  .feature-card h3 {
    font-size: 15.5px;
    margin-bottom: 2px;
  }
  .feature-card p {
    font-size: 13.5px;
    line-height: 1.45;
  }
  /* Tighter section breathing room around the compact cards */
  .features { padding-top: 56px; padding-bottom: 56px; }
  .features .section-head { margin-bottom: 24px; }
  .preview { padding-top: 56px; padding-bottom: 56px; }
  .preview .section-head { margin-bottom: 24px; }

  .cta-stats { gap: 16px; }
  .cta-stats .divider { display: none; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .phone {
    width: 290px;
    height: 580px;
  }
  .hero-visual { min-height: 540px; }
  /* Keep the email card a touch wider than the smaller phone */
  .email-form[data-form="hero"] { max-width: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Visually hidden (honeypot, screenreader-only) ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(124, 92, 255, 0.35);
  color: #fff;
}
