@property --angle {
  syntax: '<angle>';
  initial-value: 220deg;
  inherits: false;
}

@keyframes spin-border {
  to { --angle: 580deg; }
}

@keyframes glow-shadow {
  0%, 100% {
    box-shadow:
      0 24px 70px -30px rgba(80, 60, 200, 0.38),
      0 8px 32px -20px rgba(255, 120, 80, 0.26);
  }
  50% {
    box-shadow:
      0 32px 90px -30px rgba(120, 80, 240, 0.52),
      0 12px 48px -20px rgba(255, 140, 90, 0.42);
  }
}

@keyframes halo-breathe {
  0%, 100% { filter: blur(22px); opacity: 0.32; }
  50%      { filter: blur(30px); opacity: 0.52; }
}

@keyframes inner-glow {
  0%, 100% {
    box-shadow:
      inset 0 0 24px rgba(255, 95, 199, 0.45),
      inset 0 0 60px rgba(140, 100, 255, 0.32),
      inset 0 0 130px rgba(80, 50, 180, 0.22);
  }
  50% {
    box-shadow:
      inset 0 0 40px rgba(91, 231, 255, 0.5),
      inset 0 0 90px rgba(120, 80, 240, 0.4),
      inset 0 0 180px rgba(255, 95, 199, 0.25);
  }
}

:root {
  --bg:        #07061a;
  --bg-2:      #0c0b25;
  --card:      rgba(255, 255, 255, 0.04);
  --card-2:    rgba(255, 255, 255, 0.06);
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --text:      #f3f5fa;
  --text-soft: #c4cad6;
  --muted:     #8c93a3;

  --blue:      #4d8eff;
  --blue-deep: #2a64d9;
  --blue-hl:   rgba(77, 142, 255, 0.25);

  --orange:    #ff7a3d;
  --orange-2:  #ff9550;
  --green:     #2ed573;

  --grad:      linear-gradient(90deg, #c084ff 0%, #ff5fc7 50%, #ff7a3d 100%);
  --pulse:     linear-gradient(90deg, #ff3d4d 0%, #ff7a3d 50%, #ffc23d 100%);

  --sans:      'Manrope', system-ui, -apple-system, sans-serif;
  --display:   'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;

  --gutter:    clamp(20px, 4vw, 64px);
  --maxw:      1320px;
  --ease:      cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;

  &::before {
    content: "";
    position: fixed;
    inset: -10% -10% 50% -10%;
    background:
      radial-gradient(70% 50% at 80% 0%, rgba(255, 90, 50, 0.18), transparent 60%),
      radial-gradient(60% 50% at 10% 30%, rgba(80, 120, 255, 0.10), transparent 60%);
    z-index: 0;
    pointer-events: none;
  }
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--blue); color: #fff; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;

  &.pill { border-radius: 999px; }

  &.primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(77, 142, 255, 0.6);

    &:hover {
      background: var(--blue-deep);
      transform: translateY(-1px);
    }
  }

  &.light {
    background: #fff;
    color: var(--bg);

    &:hover { background: #e9ecf6; transform: translateY(-1px); }
  }

  &.orange {
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(255, 122, 61, 0.5);

    &:hover { filter: brightness(1.06); transform: translateY(-1px); }
  }

  &.wide { width: 100%; justify-content: center; }
  &.big  { padding: 18px 28px; font-size: 16px; }
}


.topbar {
  position: relative;
  z-index: 10;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;

  .logo {
    display: inline-block;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;

    .pulse-mark {
      width: 240px;
      height: auto;
      display: block;
    }
  }

  .topnav {
    display: flex;
    gap: 28px;
    justify-content: center;

    a {
      font-weight: 600;
      font-size: 14px;
      color: var(--text-soft);
      transition: color 0.2s var(--ease);

      &:hover { color: var(--text); }
    }
  }
}


.hero {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) var(--gutter) clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;

  .podcast-card { margin-top: auto; }
}

.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;

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

.hero-left .display {
  font-size: clamp(40px, 5.4vw, 72px);

  .hl-pill {
    display: inline-block;
    margin-bottom: 14px;
    line-height: 1.1;
    background: none;
    padding: 0;
    color: #4dd6ff;
    letter-spacing: -0.01em;
    text-shadow:
      0 0 1px #aaf2ff,
      0 0 6px rgba(77, 214, 255, 0.95),
      0 0 18px rgba(45, 180, 255, 0.85),
      0 0 40px rgba(30, 130, 255, 0.6);
    animation: neon-breathe 6s ease-in-out infinite;
    will-change: text-shadow;
  }

  .big {
    display: block;
    color: var(--text);
    margin-top: 8px;
  }
}

@keyframes neon-breathe {
  0%, 100% {
    text-shadow:
      0 0 1px #aaf2ff,
      0 0 6px rgba(77, 214, 255, 0.95),
      0 0 18px rgba(45, 180, 255, 0.85),
      0 0 40px rgba(30, 130, 255, 0.6);
  }
  50% {
    text-shadow:
      0 0 1px #aaf2ff,
      0 0 9px rgba(77, 214, 255, 1),
      0 0 26px rgba(45, 180, 255, 0.95),
      0 0 58px rgba(30, 130, 255, 0.75);
  }
}

.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  max-width: 540px;

  &.center { text-align: center; margin-left: auto; margin-right: auto; }
}

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


.podcast-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #4b2db8, #2e1a72);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 30px 60px -30px rgba(60, 30, 180, 0.6);

  .cover {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
  }

  .meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }

  .show {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin: 0;
  }
}

.player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;

  .play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background 0.2s var(--ease);

    &:hover { background: rgba(255,255,255,0.32); }
  }

  .ic-play, .ic-pause { width: 14px; height: 14px; }
  .ic-pause { display: none; }
  &.playing .ic-play { display: none; }
  &.playing .ic-pause { display: block; }

  .t {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-variant-numeric: tabular-nums;
    min-width: 28px;
  }

  .bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 99px;
    overflow: hidden;
    cursor: pointer;

    .prog {
      height: 100%;
      width: 0;
      background: #fff;
      border-radius: 99px;
      transition: width 0.1s linear;
    }
  }
}


.hero-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050514;
  box-shadow: 0 30px 60px -30px rgba(60, 80, 180, 0.4);

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


.widget {
  position: relative;
  align-self: stretch;

  .glow {
    position: relative;
    border-radius: 28px;
    padding: 2px;
    background:
      conic-gradient(from var(--angle, 220deg),
        #ff3d4d 0%,
        #ff7a3d 14%,
        #ffc23d 26%,
        #5be7ff 42%,
        #4d8eff 55%,
        #c084ff 70%,
        #ff5fc7 85%,
        #ff3d4d 100%);
    animation: spin-border 9s linear infinite, glow-shadow 5s ease-in-out infinite;

    &::before {
      content: "";
      position: absolute;
      inset: -14px;
      border-radius: 36px;
      background: inherit;
      z-index: -1;
      pointer-events: none;
      animation: halo-breathe 5s ease-in-out infinite;
    }
  }

  .inner {
    position: relative;
    border-radius: 26px;
    background:
      radial-gradient(80% 60% at 30% 0%, rgba(95, 60, 255, 0.18), transparent 60%),
      radial-gradient(60% 50% at 90% 100%, rgba(255, 100, 60, 0.14), transparent 60%),
      linear-gradient(180deg, #0d0c24, #07061a);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: inner-glow 5s ease-in-out infinite;
  }

  .g-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
  }

  .g-sub {
    font-size: 18px;
    color: var(--text);
    text-align: center;
    margin: 0;
    font-weight: 600;
  }

  .g-pill {
    align-self: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--text-soft);
    margin: 0;
  }

  .cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);

    .cat {
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-soft);
      border-radius: 999px;
      transition: background 0.2s var(--ease), color 0.2s var(--ease);

      &:hover { color: var(--text); }

      &.on {
        background: rgba(77, 142, 255, 0.15);
        color: var(--blue);
        border: 1px solid rgba(77, 142, 255, 0.3);
      }
    }
  }

  .news {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 480px;
    overflow: hidden;
  }

  .reading {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.6);
      animation: ping 1.6s infinite;
    }
  }

  .powered {
    font-size: 11px;
    text-align: center;
    color: var(--muted);
    margin: 4px 0 0;

    strong { color: var(--text-soft); font-weight: 700; }
  }
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(46, 213, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}


.news-card {
  background: #fafbff;
  color: #14131f;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .cat-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
  }

  .via {
    font-size: 11px;
    color: #6e7280;
  }

  .head {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: #14131f;
  }

  .ex {
    font-size: 12.5px;
    line-height: 1.5;
    color: #4a4d5e;
    margin: 0;
  }
}


.partners {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;

  .kicker {
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-align: center;
    margin: 0 0 28px;
    padding: 0 var(--gutter);
  }

  .marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);

    .track {
      display: inline-flex;
      gap: 18px;
      animation: scroll-x 60s linear infinite;
      padding-left: 18px;
      white-space: nowrap;

      img {
        width: 116px;
        height: 116px;
        flex: 0 0 116px;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
        border: 1px solid var(--line);
        object-fit: contain;
        padding: 6px;
        transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);

        &:hover {
          transform: translateY(-2px);
          border-color: var(--line-2);
        }
      }
    }
  }
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.sect-head {
  text-align: left;
  margin-bottom: 36px;

  &.center { text-align: center; }

  .display .hl-pill {
    display: inline-block;
    color: var(--blue);
    background: var(--blue-hl);
    padding: 0 8px 4px;
    border-radius: 6px;
    line-height: 1.1;

    em { font-style: italic; }
  }

  .display .big-blue {
    display: block;
    color: var(--blue);
    margin-top: 6px;
  }
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 18px;

  &.tight { margin: 16px 0 0; font-size: 14px; letter-spacing: 0.04em; text-transform: none; color: var(--text-soft); }
}


.features {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--gutter);

  .display {
    font-size: clamp(36px, 4.8vw, 64px);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: 32px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feat {
  h3 {
    font-family: var(--display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 12px;
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: 12px;

    li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
      font-size: 15.5px;
      line-height: 1.55;
      color: var(--text-soft);
    }

    .ck {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(77, 142, 255, 0.15);
      color: var(--blue);
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 800;
      margin-top: 2px;
    }
  }
}

.feat-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070617;
  box-shadow: 0 40px 80px -40px rgba(80, 120, 255, 0.35);
  position: sticky;
  top: 32px;

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


.pricing {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 7vw, 100px);

  .display {
    font-family: var(--display);
    font-size: clamp(34px, 4.2vw, 52px);
    margin-bottom: 36px;
  }
}

.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 28px;

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .plan {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--text);
    letter-spacing: -0.02em;
  }

  .amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;

    .unit {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .num {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(28px, 3vw, 36px);
      color: var(--text);
    }
  }
}


.contact {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(80px, 10vw, 140px);

  .display {
    font-family: var(--display);
    font-size: clamp(36px, 4.8vw, 64px);
    color: #fff;
    margin: 14px 0 16px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 36px;
  align-items: start;
}

.form, .info {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;

  .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;

    .lbl {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-soft);
      font-weight: 600;
    }

    input, textarea {
      font: inherit;
      font-family: var(--sans);
      font-size: 15px;
      color: var(--bg);
      background: #fff;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 14px 18px;
      transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);

      &:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(77, 142, 255, 0.18);
      }
    }

    textarea {
      border-radius: 22px;
      min-height: 100px;
      resize: vertical;
    }
  }

  .form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
  }

  .hint { font-size: 13px; color: var(--muted); }

  &.sent {
    .field, .form-actions .btn { opacity: 0.5; pointer-events: none; }
    .hint { color: var(--green); font-weight: 600; }
  }
}

.info {
  display: flex;
  flex-direction: column;
  gap: 24px;

  .block {
    h3 {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 10px;
      color: var(--text);
    }

    p {
      font-size: 14px;
      line-height: 1.55;
      color: var(--text-soft);
      margin: 0 0 16px;
    }
  }

  .dl {
    margin: 0;
    border-top: 1px solid var(--line);

    > div {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      align-items: baseline;
    }

    dt {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    dd {
      margin: 0;
      font-size: 14px;
      a {
        color: var(--text);
        border-bottom: 1px solid var(--line);
        padding-bottom: 1px;
        &:hover { color: var(--blue); border-color: var(--blue); }
      }
    }
  }

  .social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    a {
      display: inline-block;
      padding: 9px 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      transition: background 0.2s var(--ease), border-color 0.2s var(--ease);

      &:hover { background: var(--blue); border-color: var(--blue); }
    }
  }
}


.page-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 32px var(--gutter);
  text-align: center;

  p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
    letter-spacing: 0.04em;
  }
}


@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto auto;

    .topnav { display: none; grid-column: 1 / -1; justify-content: flex-start; }
  }

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

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

  .feat-photo {
    position: relative;
    top: 0;
    order: -1;
    max-height: 400px;
  }

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

@media (max-width: 720px) {
  .topbar {
    padding: 14px var(--gutter);

    .logo {
      padding: 10px 16px;
      .pulse-mark { width: 160px; }
    }
  }

  .hero-left .display { font-size: clamp(34px, 9vw, 52px); }

  .podcast-card { grid-template-columns: 56px 1fr; padding: 14px; gap: 14px; }
  .podcast-card .cover { width: 56px; height: 56px; }

  .widget .inner { padding: 22px 18px; }
  .widget .g-title { font-size: clamp(36px, 11vw, 48px); }
  .widget .cats { gap: 4px; }
  .widget .cats .cat { padding: 6px 10px; font-size: 12px; }

  .partners .logos { grid-template-columns: repeat(3, 1fr); }

  .form .row { grid-template-columns: 1fr; gap: 0; }
  .form { gap: 12px; }
}

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