/* Rayva marketing site — shared styles.
   Faithful translation of the Claude Design "Rayva Workers" page into classes.
   Tokens mirror the Rayva design system (rayva-design-system…/tokens). */

/* ── Webfonts ─────────────────────────────────────────────────────────── */
/* Sprig Sans (display / H1 / numerals) + Basis Grotesque Arabic Pro (UI). */
@font-face {
  font-family: "Sprig Sans";
  src: url("../assets/fonts/SprigSans-Super.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basis Grotesque Arabic Pro";
  src: url("../assets/fonts/BasisGrotesqueArabicPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basis Grotesque Arabic Pro";
  src: url("../assets/fonts/BasisGrotesqueArabicPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basis Grotesque Arabic Pro";
  src: url("../assets/fonts/BasisGrotesqueArabicPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ───────────────────────────────────────────────────────────── */
:root {
  --ink: #171717;
  --charcoal: #484747;
  --ghost: #f7f6fb;
  --night: #0e0e0e;
  --night-card: #262626;
  --night-tabbar: #1d1d1d;
  --coral: #ff7c64;
  --tomato: #ff5533;
  --honey: #f4b860;
  --peach-tile: #ffe5df;
  --honey-tile: #fcebc8;
  --success: #1f8a5b;
  --error: #e23b34;
  --line: rgba(23, 23, 23, 0.08);
  --line-soft: rgba(23, 23, 23, 0.06);
  --ghost-85: rgba(247, 246, 251, 0.85);
  --ghost-72: rgba(247, 246, 251, 0.72);
  --ghost-70: rgba(247, 246, 251, 0.7);
  --ghost-65: rgba(247, 246, 251, 0.65);
  --ghost-50: rgba(247, 246, 251, 0.5);
  --ghost-45: rgba(247, 246, 251, 0.45);
  --ghost-40: rgba(247, 246, 251, 0.4);
  --font-ui: "Basis Grotesque Arabic Pro", system-ui, sans-serif;
  --font-display: "Sprig Sans", sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--ghost);
  font-family: var(--font-ui);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--ink);
}
a:hover {
  color: var(--tomato);
}
input::placeholder {
  color: rgba(23, 23, 23, 0.45);
}
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes rvPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 124, 100, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 124, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 124, 100, 0);
  }
}
@keyframes rvRing {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ring,
  .pulse-dot {
    animation: none !important;
  }
}

/* ── Buttons / eyebrow ────────────────────────────────────────────────── */
.btn-coral {
  display: inline-block;
  background: var(--coral);
  color: var(--ink);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}
.btn-coral:hover {
  background: var(--tomato);
  color: var(--ink);
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.eyebrow svg {
  width: 13px;
  height: 14px;
  fill: var(--coral);
  display: inline-block;
  vertical-align: -2px;
  margin-right: 8px;
}

/* ── Nav ──────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--night);
}
.site-nav .wrap {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav .brand {
  display: inline-flex;
}
.site-nav .brand img {
  height: 25px;
}
.nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
  flex-wrap: wrap;
}
.nav-links .current {
  color: var(--honey);
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
  color: var(--ghost-85);
}
.nav-links .btn-coral {
  padding: 10px 20px;
  font-size: 14.5px;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  background: var(--night);
  /* The radar rings around the phone intentionally outgrow their stage;
     clip them here so they never cause horizontal scroll. */
  overflow: hidden;
}
.hero .wrap {
  padding: 64px 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 40px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(247, 246, 251, 0.2);
  color: var(--ghost);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
}
.hero-badge i {
  font-size: 15px;
  color: var(--coral);
}
.hero h1 {
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
  margin: 0;
  color: var(--ghost);
}
.hero-sub {
  font-size: 18.5px;
  color: var(--ghost-72);
  margin: 0;
  max-width: 470px;
}
.hero-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  flex-wrap: wrap;
}
.hero-form input {
  flex: 1;
  min-width: 200px;
  padding: 15px 20px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--ghost);
}
.hero-form .btn-coral {
  font-size: 15.5px;
  padding: 15px 26px;
  white-space: nowrap;
}
.hero-msg {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.hero-msg.ok {
  color: var(--honey);
}
.hero-msg.err {
  color: var(--coral);
}
.hero-points {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--ghost-70);
  flex-wrap: wrap;
}
.hero-points span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.hero-points i {
  font-size: 15px;
  color: var(--honey);
}

.hero-phone {
  justify-self: center;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-stage {
  position: relative;
  width: 322px;
  max-width: 100%;
  height: 580px;
}
.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border: 2px solid rgba(255, 124, 100, 0.35);
  border-radius: 999px;
  animation: rvRing 3.2s ease-out infinite;
}
.ring.delayed {
  border-color: rgba(255, 124, 100, 0.22);
  animation-delay: 1.6s;
}
.phone-crop {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.phone-crop.tall {
  height: 620px;
}
.phone-scale {
  transform: scale(0.8);
  transform-origin: top center;
  width: 402px;
  margin-left: -40px;
}
.hero-caption {
  padding: 10px 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ghost-45);
}

/* ── iPhone frame (static port of the design's IOSDevice) ─────────────── */
.iphone {
  width: 402px;
  height: 700px;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.12);
}
.iphone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 37px;
  border-radius: 24px;
  background: #000;
  z-index: 50;
}
.iphone-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 21px 24px 19px;
}
.iphone-status .half {
  flex: 1;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iphone-status .time {
  font-family: -apple-system, "SF Pro", system-ui, sans-serif;
  font-weight: 590;
  font-size: 17px;
  line-height: 22px;
  color: #fff;
  padding-top: 1.5px;
}
.iphone-status .glyphs {
  gap: 7px;
}
.iphone-home {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 8px;
  pointer-events: none;
}
.iphone-home span {
  width: 139px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
}

/* ── In-phone app screens ─────────────────────────────────────────────── */
.app {
  height: 700px;
  display: flex;
  flex-direction: column;
  background: var(--night);
  font-family: var(--font-ui);
  color: var(--ghost);
}
.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 64px 18px 8px;
}
.app-title {
  font-weight: 700;
  font-size: 22px;
}
.app-new {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 124, 100, 0.14);
  color: var(--coral);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  animation: rvPulse 2s infinite;
}
.app-chips {
  margin: 6px 14px 0;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.app-chips span {
  background: rgba(247, 246, 251, 0.08);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
}
.app-chips .on {
  background: var(--coral);
  color: var(--ink);
}
.offer-list {
  margin: 12px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.offer {
  background: var(--night-card);
  border-radius: 18px;
  padding: 14px;
}
.offer.hot {
  border: 1px solid rgba(244, 184, 96, 0.35);
}
.offer-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.offer-tile {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(247, 246, 251, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-tile i {
  font-size: 17px;
  color: var(--ghost-85);
}
.offer.hot .offer-tile {
  background: rgba(244, 184, 96, 0.14);
}
.offer.hot .offer-tile i {
  color: var(--honey);
}
.offer-main {
  flex: 1;
}
.offer-name {
  font-weight: 700;
  font-size: 14px;
}
.offer-meta {
  font-size: 11.5px;
  color: var(--ghost-70);
}
.offer-pay {
  text-align: right;
}
.offer-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.offer-boost {
  font-size: 10.5px;
  color: var(--honey);
  font-weight: 700;
}
.app-route {
  margin: 12px 14px 0;
  background: var(--night-card);
  border-radius: 16px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-route > i {
  font-size: 19px;
  color: var(--honey);
}
.app-route .offer-main div:first-child {
  font-weight: 700;
  font-size: 13.5px;
}
.app-route .offer-main div:last-child {
  font-size: 11.5px;
  color: var(--ghost-70);
}
.app-route .cta {
  background: var(--coral);
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
}
.app-tabs {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 12px 20px 40px;
  background: var(--night-tabbar);
}
.app-tabs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ghost-50);
}
.app-tabs span i {
  font-size: 21px;
}
.app-tabs .on {
  font-weight: 700;
  color: var(--coral);
}

/* Availability screen */
.panel {
  margin: 10px 14px 0;
  background: var(--night-card);
  border-radius: 18px;
  padding: 16px;
}
.panel.first {
  margin-top: 6px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.panel-label {
  font-weight: 700;
  font-size: 14px;
}
.panel-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  color: var(--honey);
}
.slider {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(247, 246, 251, 0.1);
}
.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  border-radius: 999px;
  background: var(--coral);
}
.slider-knob {
  position: absolute;
  left: 55%;
  top: -7px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--ghost);
  transform: translateX(-10px);
}
.slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--ghost-45);
  margin-top: 8px;
}
.days {
  display: flex;
  gap: 6px;
}
.days span {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 10px;
  background: rgba(247, 246, 251, 0.06);
  font-size: 12px;
  font-weight: 700;
  color: var(--ghost-40);
}
.days .on {
  background: var(--coral);
  color: var(--ink);
}
.hard-stop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 246, 251, 0.08);
}
.hard-stop div {
  font-size: 13px;
  font-weight: 500;
}
.toggle {
  width: 42px;
  height: 26px;
  border-radius: 999px;
  background: var(--coral);
  position: relative;
}
.toggle span {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
}
.passport-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.passport-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.passport-list i {
  font-size: 16px;
  color: var(--success);
}

/* ── Value strip ──────────────────────────────────────────────────────── */
.value-strip {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.value-strip .wrap {
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
}
.stat {
  border-left: 3px solid var(--coral);
  padding-left: 18px;
}
.stat.honey {
  border-left-color: var(--honey);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.stat-sub {
  font-size: 13.5px;
  color: var(--charcoal);
}

/* ── A day on Rayva ───────────────────────────────────────────────────── */
.day-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 44px);
  margin: 0 0 40px;
  max-width: 720px;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
}
.day-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.day-time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.icon-tile {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--peach-tile);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-tile.honey {
  background: var(--honey-tile);
}
.icon-tile i {
  font-size: 21px;
}
.day-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin: 0;
}
.day-card p {
  font-size: 14px;
  color: var(--charcoal);
  margin: 0;
}
.day-card.dark {
  background: var(--night);
  border: none;
  color: var(--ghost);
}
.day-card.dark .day-time {
  color: var(--honey);
}
.day-card.dark .icon-tile {
  background: rgba(255, 124, 100, 0.14);
}
.day-card.dark .icon-tile i {
  color: var(--coral);
}
.day-card.dark h3 {
  color: var(--ghost);
}
.day-card.dark p {
  color: var(--ghost-65);
}

/* ── You set the terms ────────────────────────────────────────────────── */
.control-section {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.control-section .wrap {
  padding: 88px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px;
  align-items: center;
}
.control-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.control-copy .eyebrow {
  margin: 0;
}
.control-copy h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.05;
  margin: 0;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 500px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature .icon-tile {
  width: 40px;
  height: 40px;
  flex: none;
}
.feature .icon-tile i {
  font-size: 20px;
}
.feature-title {
  font-weight: 700;
  font-size: 15.5px;
}
.feature-sub {
  font-size: 14px;
  color: var(--charcoal);
}
.control-phone {
  justify-self: center;
  width: 322px;
  max-width: 100%;
  height: 620px;
  overflow: hidden;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 88px 24px;
}
.faq-section h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 26px;
}
.faq-q {
  font-weight: 700;
  font-size: 16.5px;
  margin-bottom: 6px;
}
.faq-a {
  font-size: 15px;
  color: var(--charcoal);
}

/* ── Signup ───────────────────────────────────────────────────────────── */
.signup {
  background: var(--night);
}
.signup .inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  text-align: center;
}
.signup h2 {
  font-size: clamp(36px, 5vw, 52px);
  color: var(--ghost);
  margin: 0 0 10px;
}
.signup .lede {
  font-size: 16.5px;
  color: var(--ghost-70);
  margin: 0 0 30px;
}
.signup-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.signup-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 10px;
}
.signup-fields input {
  padding: 13px 17px;
  border-radius: 12px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.cred-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cred-chips button {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.15);
  background: #fff;
  font-weight: 700;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
}
.cred-chips button[aria-pressed="true"] {
  background: var(--peach-tile);
}
.form-error {
  margin: 0;
  font-size: 13.5px;
  color: var(--error);
  font-weight: 500;
}
.signup-card .btn-coral {
  padding: 15px;
  font-size: 16px;
}
.fine-print {
  margin: 0;
  font-size: 12px;
  color: var(--charcoal);
  text-align: center;
}
.signup-done {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.signup-done i {
  font-size: 38px;
  color: var(--success);
}
.signup-done h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.signup-done p {
  font-size: 14.5px;
  color: var(--charcoal);
  margin: 0;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--night);
  border-top: 1px solid rgba(247, 246, 251, 0.1);
}
.site-footer .wrap {
  padding: 44px 24px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand img {
  height: 23px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--ghost-70);
  margin: 0;
  max-width: 260px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ghost-45);
}
.footer-col a {
  text-decoration: none;
  color: rgba(247, 246, 251, 0.8);
}
.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 26px;
  font-size: 12.5px;
  color: rgba(247, 246, 251, 0.4);
}

/* ── Shared form + starburst helpers (home, agencies) ─────────────────── */
.starburst-num {
  position: relative;
  display: inline-block;
}
.starburst-num > svg {
  position: absolute;
  left: -13px;
  top: -7px;
  width: 54px;
  height: 57px;
  fill: var(--honey-tile);
}
.starburst-num.peach > svg {
  fill: var(--peach-tile);
}
.starburst-num > span {
  position: relative;
}
.chip-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chip-group .q {
  font-size: 13.5px;
  font-weight: 700;
}
.chip-group .cred-chips button {
  padding: 9px 16px;
}
.signup-card input.full {
  padding: 13px 17px;
  border-radius: 12px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
