:root {
  --bg: #08080a;
  --surface: #111316;
  --surface-raised: #17191e;
  --text: #f7f8fa;
  --muted: rgba(255, 255, 255, 0.59);
  --border: rgba(255, 255, 255, 0.11);
  --orange: #ff8a00;
  --yellow: #ffd60a;
  --blue: #2e7bff;
  --violet: #818cf8;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 0, 0.08), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(46, 123, 255, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.content-width {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111316;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 8, 10, 0.79);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  gap: 0;
}

.brand strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 173, 0, 0.35);
  border-radius: 12px;
  background: rgba(255, 138, 0, 0.08);
  color: #ffbd38;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  border-color: rgba(255, 173, 0, 0.58);
  background: rgba(255, 138, 0, 0.14);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  padding: 88px 0 104px;
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  content: "";
}

.hero__glow {
  position: absolute;
  z-index: -3;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.hero__glow--orange {
  top: -280px;
  left: -180px;
  background: var(--orange);
}

.hero__glow--blue {
  right: -250px;
  bottom: -190px;
  background: var(--blue);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.hero__copy {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(48px, 6.1vw, 78px);
  font-weight: 920;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero__answer {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.72;
}

.hero__answer strong {
  color: rgba(255, 255, 255, 0.93);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(255, 214, 10, 0.75);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--primary {
  border-color: rgba(255, 204, 99, 0.45);
  background: linear-gradient(135deg, #ff7900, #ffb000);
  box-shadow: 0 14px 38px rgba(255, 122, 0, 0.2);
  color: #101114;
}

.button--primary:hover {
  box-shadow: 0 18px 42px rgba(255, 122, 0, 0.31);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.76);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
}

.availability > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.09);
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.phone-stage__orbit {
  position: absolute;
  width: 390px;
  height: 520px;
  border: 1px solid rgba(46, 123, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 36%, rgba(46, 123, 255, 0.16), transparent 49%),
    radial-gradient(circle at 50% 78%, rgba(255, 122, 0, 0.11), transparent 42%);
  filter: blur(2px);
  transform: rotate(-9deg);
}

.phone {
  position: relative;
  z-index: 1;
  width: 306px;
  min-height: 608px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 45px;
  background: #050608;
  box-shadow:
    0 40px 70px rgba(0, 0, 0, 0.52),
    0 0 0 6px rgba(255, 255, 255, 0.025),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(2deg);
}

.phone__top {
  position: relative;
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 800;
}

.phone__island {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 72px;
  height: 21px;
  border-radius: 99px;
  background: #000;
  transform: translateX(-50%);
}

.phone__screen {
  padding: 10px 12px;
}

.phone__brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.phone__brand > span {
  display: grid;
  gap: 1px;
}

.phone__brand small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.phone__brand strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 18px;
}

.date-strip > span {
  display: grid;
  min-height: 58px;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.date-strip small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.date-strip strong {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.date-strip .is-active {
  border-color: rgba(255, 173, 0, 0.47);
  background: linear-gradient(145deg, rgba(255, 122, 0, 0.22), rgba(255, 214, 10, 0.07));
  box-shadow: 0 9px 24px rgba(255, 122, 0, 0.12);
}

.date-strip .is-active small,
.date-strip .is-active strong {
  color: #ffd45a;
}

.phone__filters {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.phone__filters span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 6px;
  font-weight: 800;
}

.phone__filters span:first-child {
  border-color: rgba(46, 123, 255, 0.32);
  color: #77a8ff;
}

.calendar-list {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.calendar-event {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 83px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.calendar-event::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--card-accent);
  content: "";
}

.calendar-event--orange {
  --card-accent: var(--orange);
}

.calendar-event--blue {
  --card-accent: var(--blue);
}

.calendar-event--violet {
  --card-accent: var(--violet);
}

.calendar-event__time {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--card-accent) 13%, transparent);
  color: var(--card-accent);
  font-size: 8px;
  font-weight: 900;
}

.calendar-event > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.calendar-event small {
  color: var(--card-accent);
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.calendar-event strong {
  overflow: hidden;
  color: #fff;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-event em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.33);
  font-size: 6px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1px 12px 0;
  padding: 10px 2px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.phone__nav > span {
  display: grid;
  place-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.phone__nav small {
  font-size: 6px;
  font-weight: 750;
}

.phone__nav .is-active {
  color: var(--yellow);
}

.section {
  padding: 96px 0;
}

.answer-section {
  position: relative;
  padding-top: 28px;
}

.answer-card {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(21, 23, 28, 0.97), rgba(10, 11, 14, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.answer-card::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(46, 123, 255, 0.12);
  filter: blur(75px);
  content: "";
}

.answer-card h2 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(32px, 4.5vw, 54px);
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.answer-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.72;
}

.answer-card > p strong {
  color: #fff;
}

.answer-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 34px 0 0;
}

.answer-facts > div {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.answer-facts dt {
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.answer-facts dd {
  margin: 7px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.categories h2,
.launch-card h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 55px);
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-heading > p,
.categories__grid > div > p:not(.eyebrow),
.launch-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.68;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(23, 25, 30, 0.9), rgba(12, 13, 16, 0.95));
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.feature-card--calendar {
  grid-column: span 8;
  background:
    radial-gradient(circle at 87% 22%, rgba(255, 122, 0, 0.15), transparent 25%),
    linear-gradient(145deg, rgba(23, 25, 30, 0.95), rgba(12, 13, 16, 0.97));
}

.feature-card--cta {
  display: grid;
  grid-column: span 12;
  min-height: 0;
  grid-template-columns: 58px minmax(200px, 0.7fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.feature-card__icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(255, 173, 0, 0.18);
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.08);
  color: #ff9e2e;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card__number {
  position: absolute;
  top: 23px;
  right: 25px;
  margin: 0;
  color: rgba(255, 255, 255, 0.13);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  max-width: 470px;
  margin: 28px 0 0;
  color: #fff;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.feature-card > p:not(.feature-card__number) {
  max-width: 600px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.65;
}

.feature-card--calendar h3 {
  font-size: clamp(25px, 3vw, 36px);
}

.feature-card--cta .feature-card__number {
  position: static;
  color: rgba(255, 255, 255, 0.15);
}

.feature-card--cta h3,
.feature-card--cta > p:not(.feature-card__number) {
  margin: 0;
}

.feature-card--cta a {
  color: #ffb12d;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.categories {
  padding-top: 54px;
}

.categories__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.categories__grid > div > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
}

.category-list li:nth-child(3n + 1) {
  border-color: rgba(255, 138, 0, 0.2);
  color: #ffac4d;
}

.category-list li:nth-child(3n + 2) {
  border-color: rgba(46, 123, 255, 0.22);
  color: #7dacff;
}

.launch-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 5% 50%, rgba(255, 122, 0, 0.17), transparent 25%),
    radial-gradient(circle at 96% 50%, rgba(46, 123, 255, 0.13), transparent 27%),
    #111318;
}

.launch-card > img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.launch-card h2 {
  font-size: clamp(30px, 3.8vw, 46px);
}

.launch-card p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 14px;
}

.faq {
  padding-top: 40px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq details {
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.022);
}

.faq details:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.faq summary {
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.45;
}

.faq details p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.67;
}

.site-footer {
  padding: 34px 0 calc(34px + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(5, 6, 8, 0.65);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-footer .brand img {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .hero {
    padding-top: 64px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    max-width: 790px;
  }

  .phone-stage {
    min-height: 640px;
  }

  .feature-card {
    grid-column: span 6;
  }

  .feature-card--calendar,
  .feature-card--cta {
    grid-column: span 12;
  }

  .feature-card--cta {
    grid-template-columns: 50px minmax(200px, 0.8fr) minmax(240px, 1fr) auto;
  }
}

@media (max-width: 720px) {
  .content-width {
    width: min(100% - 36px, 1180px);
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
    padding: 50px 0 78px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero__answer {
    font-size: 15px;
  }

  .phone-stage {
    min-height: 590px;
    overflow: hidden;
  }

  .phone-stage__orbit {
    width: 330px;
    height: 470px;
  }

  .phone {
    width: 286px;
    min-height: 574px;
  }

  .section {
    padding: 72px 0;
  }

  .answer-section {
    padding-top: 20px;
  }

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

  .section-heading,
  .categories__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .feature-card--calendar,
  .feature-card--cta {
    grid-column: span 12;
  }

  .feature-card--cta {
    display: block;
  }

  .feature-card--cta .feature-card__number {
    margin-bottom: 18px;
  }

  .feature-card--cta h3 {
    margin-bottom: 10px;
  }

  .feature-card--cta a {
    display: inline-block;
    margin-top: 18px;
  }

  .launch-card {
    grid-template-columns: 1fr;
  }

  .launch-card > img {
    width: 62px;
    height: 62px;
  }

  .launch-card .button {
    width: 100%;
  }

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

  .faq details:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-footer p {
    width: 100%;
    order: 3;
  }
}

@media (max-width: 430px) {
  .content-width {
    width: calc(100% - 30px);
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .availability {
    align-items: flex-start;
    line-height: 1.5;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone {
    width: 268px;
    min-height: 548px;
  }

  .calendar-event {
    min-height: 77px;
  }

  .answer-card,
  .feature-card,
  .launch-card {
    border-radius: 22px;
  }

  .answer-card {
    padding: 26px 20px;
  }

  .answer-card > p:not(.eyebrow) {
    font-size: 14px;
  }

  .answer-facts {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .categories h2 {
    font-size: 35px;
  }

  .feature-card {
    min-height: 0;
    padding: 23px;
  }

  .category-list {
    gap: 8px;
  }

  .category-list li {
    padding: 11px 13px;
    font-size: 10px;
  }

  .site-footer nav {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
