:root {
  --dial-coral: #ef705f;
  --dial-coral-dark: #b9463b;
  --dial-coral-soft: #fff0ec;
  --dial-cream: #fffaf6;
  --dial-navy: #0b1423;
  --dial-blue: #2f8cff;
}

.dial-page {
  --accent: var(--dial-coral-dark);
}

.dial-wrap {
  width: min(100% - 3rem, 1120px);
  margin-inline: auto;
}

.dial-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 75% 18%, rgba(239, 112, 95, 0.16), transparent 28rem),
    radial-gradient(circle at 1px 1px, rgba(239, 112, 95, 0.11) 1px, transparent 0);
  background-size:
    auto,
    24px 24px;
}

.dial-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.dial-brandline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.dial-brand-icon {
  width: 48px;
  height: 48px;
}

.dial-brand-icon img,
.dial-availability-icon img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24%;
}

.dial-brandline strong,
.dial-brandline span {
  display: block;
}

.dial-brandline strong {
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.dial-brandline span,
.dial-kicker {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--dial-coral-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.dial-hero h1 {
  max-width: 16ch;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: clamp(3.15rem, 7vw, 5.9rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.dial-category {
  max-width: 47ch;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  font-weight: 600;
  line-height: 1.45;
}

.dial-hero-detail {
  max-width: 52ch;
  color: var(--body-text);
  font-size: 1.02rem;
  line-height: 1.72;
}

.dial-hero-legal {
  max-width: 54ch;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.dial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.dial-actions-primary {
  align-items: center;
  gap: 1.1rem;
}

.app-store-badge-link {
  display: inline-flex;
  padding: 10px;
  line-height: 0;
  text-decoration: none;
}

.app-store-badge-link img {
  display: block;
  width: auto;
  height: 40px;
}

.dial-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.dial-button-primary {
  border-color: var(--dial-coral-dark);
  background: var(--dial-coral-dark);
  color: #fff;
}

.dial-button-primary:hover {
  border-color: #9f382f;
  background: #9f382f;
  color: #fff;
}

.dial-button-secondary {
  border-color: var(--border);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--ink);
}

.dial-button-secondary:hover {
  border-color: var(--dial-coral);
  color: var(--dial-coral-dark);
}

.dial-button:focus-visible,
.dial-text-link:focus-visible {
  outline: 3px solid var(--dial-coral);
  outline-offset: 3px;
}

.dial-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dial-actions-secondary {
  margin-top: 0.85rem;
}

.dial-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.71rem;
  list-style: none;
}

.dial-platforms li:not(:first-child)::before {
  content: '·';
  margin-right: 1.2rem;
  color: var(--dial-coral);
}

.dial-hero-visual {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: center;
}

.dial-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(37vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(239, 112, 95, 0.28);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -8deg,
    rgba(239, 112, 95, 0.32) 0 1deg,
    transparent 1deg 10deg
  );
  transform: translate(-50%, -50%) rotate(-8deg);
}

.dial-orbit::after {
  content: '';
  position: absolute;
  inset: 13%;
  border: 14px solid rgba(239, 112, 95, 0.12);
  border-right-color: var(--dial-coral);
  border-radius: 50%;
}

.dial-phone {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 7px solid #242833;
  border-radius: clamp(28px, 4vw, 48px);
  background: #000;
  box-shadow:
    0 36px 80px -28px rgba(10, 11, 16, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}

.dial-phone::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 30%;
  height: 21px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.dial-phone picture,
.dial-phone img {
  display: block;
  width: 100%;
}

.dial-phone img {
  height: auto;
}

.dial-phone-hero {
  width: min(100%, 392px);
  align-self: center;
  transform: rotate(2.5deg);
}

.dial-proof {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.dial-proof .dial-wrap {
  padding-block: 1.15rem;
}

.dial-proof-label {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dial-proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.dial-proof-row p {
  padding: 0.6rem 1rem;
  border-right: 1px solid var(--border-soft);
  color: var(--muted);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.dial-proof-row p:first-child {
  padding-left: 0;
}

.dial-proof-row p:last-child {
  border-right: 0;
}

.dial-story,
.dial-history,
.dial-report,
.dial-watch-band,
.dial-supporting,
.dial-plans,
.dial-privacy,
.dial-availability {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--border);
}

.dial-story-tint,
.dial-supporting {
  background: color-mix(in srgb, var(--dial-coral-soft) 52%, var(--bg));
}

.dial-story-grid,
.dial-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.dial-story-reverse .dial-story-copy {
  order: 2;
}

.dial-story-copy h2,
.dial-section-heading h2,
.dial-plans h2,
.dial-privacy h2 {
  margin: 0.7rem 0 1.2rem;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1;
}

.dial-story-copy p:not(.dial-kicker):not(.dial-smallprint),
.dial-section-heading > p:last-child,
.dial-report p,
.dial-privacy-card p,
.dial-availability-copy > p {
  color: var(--body-text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.dial-boundary {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--dial-coral);
  background: var(--bg-alt);
  color: var(--body-text);
  font-size: 0.88rem;
  line-height: 1.65;
}

.dial-boundary strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--ink);
}

.dial-product-stage {
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
}

.dial-product-stage-blue {
  background:
    radial-gradient(circle at 70% 20%, rgba(47, 140, 255, 0.42), transparent 38%),
    linear-gradient(155deg, #132540, var(--dial-navy) 65%);
}

.dial-product-stage-coral {
  background:
    radial-gradient(circle at 22% 18%, rgba(239, 112, 95, 0.45), transparent 38%),
    linear-gradient(155deg, #30202a, var(--dial-navy) 65%);
}

.dial-phone-section {
  width: min(100%, 390px);
}

.dial-checklist {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: var(--body-text);
  font-size: 0.94rem;
  list-style: none;
}

.dial-checklist li {
  position: relative;
  padding-left: 1.6rem;
}

.dial-checklist li::before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.6rem;
  height: 0.32rem;
  border-bottom: 2px solid var(--dial-coral-dark);
  border-left: 2px solid var(--dial-coral-dark);
  transform: rotate(-45deg);
}

.dial-section-heading {
  max-width: 740px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.dial-section-heading > p:last-child {
  max-width: 58ch;
}

.dial-screen-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4.5rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 140, 255, 0.38), transparent 34%),
    radial-gradient(circle at 90% 75%, rgba(239, 112, 95, 0.3), transparent 34%), var(--dial-navy);
}

.dial-screen-card {
  min-width: 0;
  margin: 0;
}

.dial-screen-card-offset {
  padding-top: 2rem;
}

.dial-phone-card {
  width: min(100%, 360px);
  margin-inline: auto;
}

.dial-screen-card figcaption {
  display: grid;
  gap: 0.35rem;
  margin: 1.4rem auto 0;
  color: #fff;
  text-align: center;
}

.dial-screen-card figcaption strong {
  font-size: 1rem;
}

.dial-screen-card figcaption span {
  color: #aeb8c7;
  font-size: 0.84rem;
}

.dial-report {
  overflow: hidden;
  background: #101823;
}

.dial-report-grid {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 0.8fr);
}

.dial-report .dial-story-copy h2,
.dial-report .dial-story-copy p:not(.dial-kicker) {
  color: #f7f7f5;
}

.dial-report .dial-story-copy p:not(.dial-kicker) {
  color: #c4cad2;
}

.dial-report-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.dial-report-visual::before {
  content: '';
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(239, 112, 95, 0.22);
  filter: blur(1px);
}

.dial-paper {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow:
    0 36px 80px -28px rgba(10, 11, 16, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dial-paper picture,
.dial-paper img {
  display: block;
  width: 100%;
  height: auto;
}

.dial-paper-report {
  width: min(100%, 420px);
  transform: rotate(-2deg);
}

.dial-watch-band {
  background:
    radial-gradient(circle at 30% 20%, rgba(47, 140, 255, 0.1), transparent 42%), var(--surface);
}

.dial-watch-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.dial-watch {
  margin: 0;
  width: min(46%, 188px);
  padding: clamp(7px, 1.4vw, 11px);
  border-radius: clamp(30px, 6vw, 46px);
  background: linear-gradient(160deg, #3a3f4a, #16191f 72%);
  box-shadow:
    0 26px 58px -24px rgba(10, 11, 16, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dial-watch picture,
.dial-watch img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(16px, 3vw, 24px);
}

.dial-watch-front {
  transform: rotate(-3deg);
}

.dial-watch-back {
  margin-top: clamp(2.5rem, 7vw, 4.5rem);
  transform: rotate(3deg);
}

.dial-smallprint {
  margin-top: 1.25rem;
  font-size: 0.86rem !important;
  line-height: 1.65 !important;
}

.dial-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dial-feature-grid article {
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: none;
}

.dial-feature-grid article > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--dial-coral-dark);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.dial-feature-grid h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.dial-feature-grid p {
  margin: 0;
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.dial-plans {
  background: color-mix(in srgb, var(--dial-coral-soft) 35%, var(--bg));
}

.dial-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
}

.dial-plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.dial-plan-card-pro {
  border-color: color-mix(in srgb, var(--dial-coral) 58%, var(--border));
  box-shadow: 0 18px 45px -32px rgba(185, 70, 59, 0.65);
}

.dial-plan-name {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.dial-plan-summary {
  margin: 0;
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.dial-plan-features {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.55;
  list-style: none;
}

.dial-plan-features li {
  position: relative;
  padding-left: 1.5rem;
}

.dial-plan-features li::before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.55rem;
  height: 0.3rem;
  border-bottom: 2px solid var(--dial-coral-dark);
  border-left: 2px solid var(--dial-coral-dark);
  transform: rotate(-45deg);
}

.dial-plan-pricing {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  overflow: visible;
}

.dial-currency {
  position: relative;
  z-index: 4;
  justify-self: end;
}

.dial-currency details {
  position: relative;
}

.dial-currency summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0.2rem 0.15rem 0.2rem 0.1rem;
}

.dial-currency summary::-webkit-details-marker {
  display: none;
}

.dial-currency summary::after {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.dial-currency details[open] summary {
  color: var(--ink);
}

.dial-currency details[open] summary::after {
  margin-top: 0.15rem;
  transform: rotate(225deg);
}

.dial-currency-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 0.35rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 6.5rem;
  max-height: min(50vh, 18rem);
  overflow-y: auto;
  padding: 0.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(20, 17, 15, 0.04);
}

.dial-currency-menu button {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-align: start;
  cursor: pointer;
}

.dial-currency-menu button[aria-current='true'] {
  color: var(--ink);
  font-weight: 600;
  background: var(--bg-alt);
}

.dial-plan-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.dial-plan-options div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-right: 1px solid var(--border);
}

.dial-plan-options div:last-child {
  border-right: 0;
}

.dial-plan-options strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.dial-plan-options span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.dial-plan-note {
  margin: -0.6rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.dial-privacy-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 7rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--dial-coral) 42%, var(--border));
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 100%, rgba(239, 112, 95, 0.18), transparent 19rem),
    var(--dial-cream);
}

.dial-privacy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

.dial-privacy-card p + p {
  margin-top: 1rem;
}

.dial-privacy-specs {
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.dial-privacy-specs > div {
  display: grid;
  grid-template-columns: minmax(6.5rem, auto) 1fr;
  gap: 0.4rem 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--dial-coral) 22%, transparent);
}

.dial-privacy-specs > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.dial-privacy-specs dt {
  color: var(--dial-coral-dark);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dial-privacy-specs dd {
  margin: 0;
  color: var(--body-text);
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .dial-privacy-specs > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.dial-text-link {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--dial-coral-dark);
  font-weight: 650;
  text-underline-offset: 0.2em;
}

.dial-availability-card {
  display: block;
  max-width: 40rem;
}

.dial-availability-copy {
  min-width: 0;
}

.dial-availability-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem 1.1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.dial-availability-icon {
  width: clamp(56px, 7vw, 72px);
}

.dial-availability h2 {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.dial-availability-copy .app-store-badge-link {
  display: inline-block;
  margin-top: 1.1rem;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .dial-button:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 900px) {
  .dial-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dial-plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dial-wrap {
    width: min(100% - 2rem, 620px);
  }

  .dial-hero-grid,
  .dial-story-grid,
  .dial-report-grid,
  .dial-privacy-card {
    grid-template-columns: 1fr;
  }

  .dial-hero {
    padding-top: 3.5rem;
  }

  .dial-hero-copy {
    position: relative;
    z-index: 2;
  }

  .dial-hero h1 {
    max-width: 12ch;
  }

  .dial-hero-visual {
    padding: 2rem 0 0;
  }

  .dial-orbit {
    width: min(92vw, 470px);
  }

  .dial-phone-hero {
    width: min(78vw, 380px);
  }

  .dial-proof-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem 0;
  }

  .dial-proof-row p {
    border-right: 0;
    padding: 0.45rem 0.5rem;
  }

  .dial-proof-row p:first-child {
    padding-left: 0.5rem;
  }

  .dial-story-reverse .dial-story-copy {
    order: initial;
  }

  .dial-screen-pair {
    grid-template-columns: 1fr;
  }

  .dial-screen-card-offset {
    padding-top: 0;
  }

  .dial-report .dial-story-copy {
    grid-row: 1;
  }
}

@media (max-width: 480px) {
  .dial-actions,
  .dial-button {
    width: 100%;
  }

  .dial-platforms {
    display: grid;
    gap: 0.35rem;
  }

  .dial-platforms li:not(:first-child)::before {
    content: none;
  }

  .dial-product-stage {
    padding: 1rem;
  }

  .dial-screen-pair {
    margin-inline: -0.5rem;
    padding-inline: 1rem;
  }

  .dial-feature-grid {
    grid-template-columns: 1fr;
  }

  .dial-feature-grid article > span {
    margin-bottom: 1.5rem;
  }

  .dial-plan-options {
    grid-template-columns: 1fr;
  }

  .dial-plan-options div {
    grid-template-columns: 1fr auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .dial-plan-options div:last-child {
    border-bottom: 0;
  }
}

/* Spanish strings run longer than English. Widen the two character-capped
   headlines rather than shortening the translations. */
html[lang='es'] .dial-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.55rem, 6.2vw, 4.7rem);
}

@media (max-width: 760px) {
  html[lang='es'] .dial-hero h1 {
    max-width: 18ch;
  }
}

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

  .dial-button {
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --dial-coral-dark: #ff8d7d;
    --dial-coral-soft: #2a1d1a;
    --dial-cream: #211916;
  }

  .dial-button-primary {
    border-color: #d75e50;
    background: #d75e50;
  }

  .dial-button-primary:hover {
    border-color: #c75044;
    background: #c75044;
  }
}
