:root {
  --bg: #fdfcf8;
  --bg-soft: #f6f2ea;
  --bg-softer: #fbf9f3;
  --surface: #ffffff;
  --surface-soft: #faf7f1;
  --surface-dark: #1c1c1a;
  --surface-dark-soft: #2c2c2a;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --text: #1c1c1a;
  --text-muted: #5f5f5c;
  --text-soft: #8b8a85;
  --text-inverse: #fdfcf8;
  --brand-cyan: #4bd9eb;
  --brand-blue: #4d66f2;
  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 48px rgba(28, 28, 26, 0.08);
  --shadow-panel: 0 28px 72px rgba(28, 28, 26, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(77, 102, 242, 0.04), transparent 26%),
    radial-gradient(circle at top right, rgba(75, 217, 235, 0.05), transparent 24%),
    linear-gradient(180deg, #fdfcf8 0%, #fbf9f3 48%, #f7f3eb 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.theme-tmobile {
  background:
    radial-gradient(circle at top left, rgba(77, 102, 242, 0.03), transparent 24%),
    radial-gradient(circle at top right, rgba(28, 28, 26, 0.03), transparent 22%),
    linear-gradient(180deg, #fdfcf8 0%, #faf7f0 52%, #f6f1e7 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-chrome {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.35;
}

.glow-cyan {
  top: 4rem;
  left: -5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(75, 217, 235, 0.18);
}

.glow-violet {
  top: 13rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  background: rgba(77, 102, 242, 0.14);
}

.glow-ember {
  bottom: 5rem;
  left: 26%;
  width: 11rem;
  height: 11rem;
  background: rgba(28, 28, 26, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(253, 252, 248, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(28, 28, 26, 0.12);
}

.brand-badge img {
  width: 188px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.45rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--surface-dark-soft);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(28, 28, 26, 0.12);
}

.btn-primary:hover {
  background: var(--surface-dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn-small {
  padding: 0.82rem 1.1rem;
  font-size: 0.92rem;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

.hero,
.page-hero {
  padding: 4.75rem 0 2.5rem;
}

.hero-grid,
.page-hero-grid,
.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.page-hero-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  margin-bottom: 1.25rem;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 42rem;
  font-size: 1.13rem;
  color: var(--text-muted);
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat,
.data-card,
.service-card,
.detail-card,
.quote-card,
.mini-panel,
.plan-card,
.use-case-card,
.step-card,
.comparison-card,
.partner-panel,
.spotlight-card,
.info-ribbon,
.metric {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero-stat,
.service-card,
.detail-card,
.plan-card,
.use-case-card,
.step-card,
.comparison-card,
.spotlight-card,
.info-ribbon,
.partner-panel,
.metric {
  padding: 1.5rem;
}

.hero-stat strong,
.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
  color: var(--text);
}

.hero-visual {
  padding: 1.25rem;
}

.hero-orbit {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #222220, #161614);
  box-shadow: 0 24px 70px rgba(28, 28, 26, 0.14);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: auto 2rem 2rem auto;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 217, 235, 0.22), transparent 65%);
  filter: blur(24px);
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.visual-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.visual-card h3,
.service-card h3,
.detail-card h3,
.plan-card h3,
.comparison-card h3,
.spotlight-card h3,
.use-case-card h3,
.footer-column h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.visual-card h3 {
  color: var(--text-inverse);
}

.visual-card p {
  color: rgba(253, 252, 248, 0.72);
}

.service-card p,
.detail-card p,
.plan-card p,
.comparison-card p,
.use-case-card p,
.footer-intro p,
.footer-column a,
.support-copy p,
.metric span,
.mini-panel p,
.partner-panel p,
.step-card p,
.section-intro p,
.spotlight-card p,
.info-ribbon p {
  color: var(--text-muted);
}

.service-grid,
.detail-grid,
.plan-grid,
.comparison-grid,
.use-case-grid,
.step-grid,
.coverage-grid,
.mini-grid,
.tmobile-nav,
.footer-grid,
.stats-strip {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.detail-grid,
.coverage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-grid,
.comparison-grid,
.use-case-grid,
.step-grid,
.mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-panel {
  padding: 1.8rem;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.icon-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
}

.section-header,
.section-intro {
  margin-bottom: 1.8rem;
  max-width: 44rem;
}

.section-header h2,
.section-intro h2,
.cta-copy h2,
.footer-intro h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.15rem);
  margin-bottom: 0.85rem;
}

.section-header p,
.section-intro p,
.cta-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.feature-list,
.city-list,
.plan-points,
.support-list,
.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.feature-list li,
.city-list li,
.plan-points li,
.support-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
}

.feature-list li::before,
.city-list li::before,
.plan-points li::before,
.support-list li::before,
.check-list li::before {
  content: "";
  flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.52rem;
  border-radius: 50%;
  background: var(--surface-dark-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
}

.support-copy,
.mini-panel {
  padding: 1.8rem;
}

.support-copy {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #21211f, #171715);
  color: var(--text-inverse);
  box-shadow: var(--shadow-panel);
}

.support-copy .eyebrow {
  color: rgba(253, 252, 248, 0.56);
}

.support-copy p,
.support-copy li,
.support-copy .subtle-link {
  color: rgba(253, 252, 248, 0.72);
}

.support-copy h2 {
  color: var(--text-inverse);
}

.support-copy .feature-list li::before,
.support-copy .check-list li::before,
.support-copy .city-list li::before {
  background: rgba(253, 252, 248, 0.72);
}

.quote-card {
  padding: 1.8rem;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--text-soft);
  font-style: normal;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #222220, #151513);
  box-shadow: var(--shadow-panel);
}

.cta-band-default .cta-copy p,
.cta-band-signal .cta-copy p {
  max-width: 38rem;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: var(--text-inverse);
}

.cta-band .cta-copy p {
  color: rgba(253, 252, 248, 0.72);
}

.cta-band .btn-primary {
  background: #ffffff;
  color: var(--surface-dark);
}

.cta-band .btn-primary:hover {
  background: #f3f1ea;
}

.cta-band .btn-secondary {
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tmobile-subnav {
  margin-top: 1.5rem;
}

.tmobile-nav {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.tmobile-nav a {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-muted);
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tmobile-nav a:hover,
.tmobile-nav a.is-active {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.94);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.page-hero-copy .partner-pill,
.hero-copy .partner-pill {
  margin-bottom: 1.2rem;
}

.accent-note,
.plan-kicker {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer {
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-column a:hover,
.footer-contact-list a:hover {
  color: var(--text);
}

.footer-contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-tmobile-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-top: 1.8rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-partner-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.footer-partner-lockup img {
  width: min(160px, 100%);
  height: auto;
}

.footer-partner-copy {
  display: grid;
  gap: 0.45rem;
}

.footer-disclosure {
  max-width: 44rem;
  font-size: 0.92rem;
}

.footer-trademark {
  max-width: 52rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-copy,
.page-hero-copy,
.service-card,
.detail-card,
.plan-card,
.comparison-card,
.use-case-card,
.spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-card a,
.spotlight-card a,
.detail-card a,
.comparison-card a,
.subtle-link {
  margin-top: auto;
  color: var(--text);
  font-weight: 600;
}

.service-card a:hover,
.spotlight-card a:hover,
.detail-card a:hover,
.comparison-card a:hover,
.subtle-link:hover {
  color: var(--text-muted);
}

.banner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.banner-pill {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
}

.page-hero-showcase,
.media-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-hero-showcase {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.media-feature {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.hero-media-card,
.art-frame,
.banner-frame,
.logo-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-media-card img,
.art-frame img,
.banner-frame img,
.logo-frame img {
  width: 100%;
  display: block;
}

.banner-frame {
  margin-top: 2rem;
}

.logo-frame {
  padding: 1.25rem;
}

.logo-frame img {
  width: min(280px, 100%);
}

.note-copy {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.pricing-table caption {
  padding: 1.25rem 1.4rem 0.25rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.pricing-table thead th {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(246, 242, 234, 0.9);
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-table code {
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
}

.public-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.public-pill.is-public {
  background: rgba(77, 102, 242, 0.1);
  color: var(--brand-blue);
}

.public-pill.is-private {
  background: rgba(28, 28, 26, 0.08);
  color: var(--text);
}

.tight-list li {
  margin: 0;
}

.eyebrow-subtle {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .support-grid,
  .footer-grid,
  .cta-band,
  .page-hero-showcase,
  .media-feature {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .detail-grid,
  .plan-grid,
  .comparison-grid,
  .use-case-grid,
  .step-grid,
  .metric-strip,
  .tmobile-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5.6rem 1rem auto;
    display: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(253, 252, 248, 0.98);
    box-shadow: var(--shadow-panel);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 3.5rem;
  }

  .hero-stats,
  .metric-strip,
  .service-grid,
  .detail-grid,
  .plan-grid,
  .comparison-grid,
  .use-case-grid,
  .step-grid,
  .tmobile-nav,
  .footer-grid,
  .footer-tmobile-meta {
    grid-template-columns: 1fr;
  }

  .header-shell {
    gap: 0.75rem;
  }

  .brand-badge img {
    width: 154px;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
    min-width: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table caption {
    padding-bottom: 1rem;
  }

  .pricing-table tbody {
    display: grid;
    gap: 1rem;
    padding: 1rem;
  }

  .pricing-table tr {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
  }

  .pricing-table td {
    border-bottom: 1px solid var(--border);
  }

  .pricing-table td:last-child {
    border-bottom: 0;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pricing-table code {
    white-space: normal;
    word-break: break-word;
  }

  .cta-actions,
  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
