/* Landing page ------------------------------------------------------- */

.hide-mobile {
  display: none;
}
@media (min-width: 900px) {
  .hide-mobile {
    display: inline-flex;
  }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--acid);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.eyebrow--center {
  text-align: center;
}

.text-mid { color: var(--text-mid); }
.text-center { text-align: center; }

.accent-underline {
  background: linear-gradient(180deg, transparent 62%, rgba(200, 255, 61, 0.35) 62%);
}

.hero {
  padding: 56px 0 64px;
}
.hero__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.85fr;
    align-items: center;
    padding-top: 20px;
  }
}

.hero__headline {
  font-size: clamp(34px, 8vw, 54px);
  color: var(--text-hi);
}
.hero__sub {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--text-mid);
  font-size: 16.5px;
  line-height: 1.6;
}

.claim-form {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  gap: 6px;
  background: var(--ink-850);
  border: 1.5px solid var(--line-strong);
  border-radius: 26px;
  padding: 6px 6px 6px 18px;
  max-width: 440px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
/* Mobile-first: the button drops to its own full-width row so the pill
   never has to fight the input/prefix for space on narrow screens. */
.claim-form__btn {
  flex: 1 0 100%;
  border-radius: var(--radius-pill);
}
@media (min-width: 480px) {
  .claim-form {
    border-radius: var(--radius-pill);
    flex-wrap: nowrap;
  }
  .claim-form__btn {
    flex: 0 0 auto;
  }
}
.claim-form:focus-within {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(200, 255, 61, 0.12);
}
.claim-form__prefix {
  color: var(--text-low);
  font-size: 14px;
  flex-shrink: 0;
}
.claim-form__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-hi);
  font-size: 14.5px;
  padding: 10px 0;
}
.claim-form__input::placeholder {
  color: var(--text-low);
}
.claim-form__btn {
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: 13.5px;
}

.hero__microcopy {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-low);
}
.link-underline {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-hi);
}
.hero__stats span {
  font-size: 12px;
  color: var(--text-low);
}

/* Peek stack ------------------------------------------------------- */
.hero__peek {
  position: relative;
}
.hero__peek-label {
  text-align: right;
  font-size: 11px;
  color: var(--text-low);
  margin: 0 4px 10px;
  letter-spacing: 0.04em;
}
.peek-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.peek-card {
  background: linear-gradient(180deg, var(--ink-850), var(--ink-900));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  animation-delay: var(--d, 0s);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s;
}
.peek-card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  border-color: var(--line-strong);
}
.peek-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.peek-card__time {
  color: var(--text-low);
  font-size: 11px;
}
.peek-card__text {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-hi);
}
.peek-card__who {
  margin-top: 12px;
}
.peek-mask {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  background: rgba(255, 184, 76, 0.08);
  border: 1px dashed rgba(255, 184, 76, 0.35);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  filter: blur(3px);
  transition: filter 0.4s var(--ease-out);
}
.peek-card:hover .peek-mask {
  filter: blur(0);
}

.peek-card__ring-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-ring {
  width: 26px;
  height: 26px;
  transform: rotate(-90deg);
  flex-shrink: 0;
}
.mini-ring__track, .mini-ring__fill {
  fill: none;
  stroke-width: 3;
}
.mini-ring__track { stroke: var(--line-strong); }
.mini-ring__fill {
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 32;
  animation: ring-pulse 2.4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { stroke-dashoffset: 32; }
  50% { stroke-dashoffset: 55; }
}
.peek-card__ring-label {
  font-size: 12px;
  color: var(--text-mid);
}

.peek-card__who--revealed {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.peek-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c, var(--acid));
  color: var(--ink-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Marquee ------------------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: var(--ink-900);
}
.marquee__track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-low);
}
.marquee__track span:nth-child(4n+2) { color: var(--acid); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections ------------------------------------------------------------ */
.section {
  padding: 76px 0;
}
.section__title {
  font-size: clamp(26px, 5vw, 38px);
  max-width: 18ch;
  margin: 0 0 44px;
}
.section__title.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 22ch;
}

.feature-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  border: 1px solid var(--line);
  background: var(--ink-850);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}
.feature-card--amber { border-color: rgba(255, 184, 76, 0.25); }
.feature-card--amber::before { background: var(--amber); }
.feature-card--amber:hover { border-color: var(--amber); }
.feature-card--coral { border-color: rgba(255, 92, 122, 0.25); }
.feature-card--coral::before { background: var(--coral); }
.feature-card--coral:hover { border-color: var(--coral); }
.feature-card--acid { border-color: rgba(200, 255, 61, 0.25); }
.feature-card--acid::before { background: var(--acid); }
.feature-card--acid:hover { border-color: var(--acid); }

.feature-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}
.feature-card--amber .feature-card__icon { color: var(--amber); }
.feature-card--coral .feature-card__icon { color: var(--coral); }
.feature-card--acid .feature-card__icon { color: var(--acid); }
.feature-card__icon svg { width: 21px; height: 21px; }

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.55;
}
.feature-card__demo {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-card__stat {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-hi) !important;
}
.feature-card__stat strong {
  color: var(--acid);
  font-family: var(--font-display);
}

.feature-card__ring-demo {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-ring {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}
.demo-ring__track, .demo-ring__fill {
  fill: none;
  stroke-width: 5;
}
.demo-ring__track { stroke: var(--line-strong); }
.demo-ring__fill {
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-dasharray: 169.6;
  stroke-dashoffset: 60;
  animation: ring-pulse-lg 3s ease-in-out infinite;
}
@keyframes ring-pulse-lg {
  0%, 100% { stroke-dashoffset: 60; }
  50% { stroke-dashoffset: 100; }
}
.demo-ring__label {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
}

/* Steps ------------------------------------------------------------ */
.section--steps {
  background: var(--ink-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.steps__item {
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--ink-850);
}
.steps__num {
  display: block;
  font-size: 13px;
  color: var(--acid);
  margin-bottom: 14px;
}
.steps__item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.steps__item p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.5;
}

/* Final CTA ------------------------------------------------------------ */
.final-cta {
  text-align: center;
}
.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta__headline {
  font-size: clamp(28px, 6.5vw, 46px);
}
.final-cta__sub {
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 16px;
}
.btn--lg {
  margin-top: 30px;
  padding: 18px 34px;
  font-size: 16px;
}

/* Footer ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 60px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.brand--sm {
  font-size: 16px;
}
.footer__note {
  color: var(--text-low);
  font-size: 13px;
}
.footer__links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--text-mid);
}
.footer__links a:hover {
  color: var(--acid);
}
