:root {
  --navy: #0d1b3d;
  --navy-deep: #071225;
  --navy-light: #162a52;
  --surface: #10203f;
  --surface-2: #15284d;
  --border: #3a4c6a;
  --cyan: #7ec8ff;
  --cyan-dim: rgba(126, 200, 255, 0.18);
  --silver: #c0c0c0;
  --white: #ffffff;
  --muted: #9aa3b5;
  --live: #e31b23;
  --panel: rgba(16, 32, 63, 0.88);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Tajawal", Tahoma, sans-serif;
  background: var(--navy-deep);
  color: var(--white);
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 80% 10%, rgba(126, 200, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(227, 27, 35, 0.08), transparent 50%),
    linear-gradient(165deg, #0a1630 0%, #0d1b3d 45%, #071225 100%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(126, 200, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 200, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
}

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px 14px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Brand header */
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border: 1px solid rgba(126, 200, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(16, 32, 63, 0.95), rgba(13, 27, 61, 0.7));
  box-shadow: 0 0 0 1px rgba(126, 200, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.25);
}

.brand-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  height: 54px;
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-meta .kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-meta .tagline {
  color: var(--silver);
  font-size: 13px;
}

.clock-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(126, 200, 255, 0.25);
  background: rgba(126, 200, 255, 0.06);
  color: var(--cyan);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-color: rgba(126, 200, 255, 0.35);
  background: rgba(126, 200, 255, 0.08);
}

/* Breaking ticker */
.ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(126, 200, 255, 0.2);
  background: rgba(7, 18, 37, 0.85);
}

.ticker-badge {
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: linear-gradient(180deg, #ff3b44, #c41620);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  min-width: 72px;
}

.ticker-track {
  overflow: hidden;
  display: block;
  position: relative;
  min-height: 42px;
  padding: 0;
  width: 100%;
}

.ticker-text {
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  width: max-content;
  max-width: none;
  will-change: transform, left;
  animation: marquee 28s linear infinite;
}

/* من نهاية الشريط (اليسار) حتى البداية (اليمين قرب عاجل) — كامل المسار */
@keyframes marquee {
  0% {
    left: 0;
    transform: translate(-100%, -50%);
  }
  100% {
    left: 100%;
    transform: translate(0, -50%);
  }
}

@media (min-width: 860px) {
  .ticker-text {
    animation-duration: 36s;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-text { animation: none; }
}

/* Broadcast grid */
.broadcast-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 920px) {
  .broadcast-grid {
    grid-template-columns: 1.35fr 0.75fr;
    align-items: stretch;
  }
}

.panel {
  border-radius: 16px;
  border: 1px solid rgba(126, 200, 255, 0.22);
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(126, 200, 255, 0.16), transparent);
  border-bottom: 1px solid rgba(126, 200, 255, 0.15);
}

.panel-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan);
}

.studio {
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 460px;
  justify-content: center;
  position: relative;
}

.studio::before {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(126, 200, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(227, 27, 35, 0.45);
  background: rgba(227, 27, 35, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

.live-badge.on .dot {
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.55);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(227, 27, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 27, 35, 0); }
}

.orb {
  margin-top: 22px;
  width: 148px;
  height: 148px;
  border: 0;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  z-index: 1;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(126, 200, 255, 0.35);
  animation: spin 10s linear infinite;
  animation-play-state: paused;
}

.orb.playing .orb-ring {
  animation-play-state: running;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 24px rgba(126, 200, 255, 0.25);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.orb-core {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #d7dbe6);
  font-size: 42px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.orb:active .orb-core { transform: scale(0.96); }
.orb.loading .orb-core {
  font-size: 18px;
  font-weight: 700;
}

.title {
  margin: 22px 0 8px;
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 800;
  z-index: 1;
}

.slogan {
  margin: 0;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.6;
  z-index: 1;
}

.visualizer {
  width: 100%;
  height: 40px;
  margin: 18px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  z-index: 1;
}

.visualizer span {
  display: block;
  width: 2.4px;
  border-radius: 2px;
  background: rgba(126, 200, 255, 0.28);
  height: 30%;
  transition: height 0.12s linear, background 0.2s ease;
}

.visualizer.active span {
  background: rgba(255, 255, 255, 0.92);
}

.status {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  min-height: 1.4em;
  z-index: 1;
}

.status.playing { color: var(--live); }

.info-card {
  width: min(420px, 100%);
  background: rgba(7, 18, 37, 0.65);
  border: 1px solid rgba(126, 200, 255, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: right;
  z-index: 1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
}

.info-row + .info-row {
  border-top: 1px solid rgba(58, 76, 106, 0.55);
}

.info-row strong {
  color: var(--white);
  font-weight: 700;
}

/* Sidebar */
.side-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.side-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(58, 76, 106, 0.45);
  color: var(--silver);
  font-size: 14px;
  line-height: 1.55;
}

.side-list li:last-child { border-bottom: 0; }

.side-list .bullet {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(126, 200, 255, 0.55);
  flex: 0 0 auto;
}

.side-list a {
  color: inherit;
  text-decoration: none;
}

.side-list a:hover { color: var(--white); }

.quote-card {
  padding: 18px 16px 16px;
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 12px;
  font-size: 54px;
  color: rgba(126, 200, 255, 0.25);
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-text {
  margin: 10px 0 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.quote-attr {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.cta-row {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(126, 200, 255, 0.28);
  color: #ffffff !important;
  text-decoration: none;
  background: rgba(13, 27, 61, 0.92);
  font-weight: 700;
  font: inherit;
  cursor: pointer;
}

.btn:hover {
  background: rgba(22, 42, 82, 0.98);
  color: #ffffff !important;
}

.btn-primary {
  background: var(--navy);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background: var(--navy-light);
  color: #ffffff !important;
}

#pwaInstallBtn {
  background: rgba(13, 27, 61, 0.92);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#pwaInstallBtn:hover {
  background: var(--navy-light);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5);
}

/* أي زر بخلفية كحلية/داكنة: النص أبيض */
button.btn,
a.btn,
#pwaInstallBtn,
.dl-tab.active {
  color: #ffffff !important;
}

/* Content pages */
.page-hero {
  display: grid;
  gap: 12px;
}

@media (min-width: 860px) {
  .page-hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.page-card,
.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(126, 200, 255, 0.22);
  background: var(--panel);
  padding: 20px;
}

.page-card h1,
.feature-card h1 {
  margin: 0 0 8px;
  font-size: 24px;
}

.page-card h2,
.feature-card h2 {
  margin: 20px 0 8px;
  font-size: 16px;
  color: var(--cyan);
}

.page-card p,
.page-card li,
.feature-card p {
  color: var(--silver);
  line-height: 1.85;
  font-size: 15px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(126, 200, 255, 0.22);
  background:
    radial-gradient(circle at 70% 40%, rgba(126, 200, 255, 0.12), transparent 45%),
    var(--panel);
}

.logo-wrap img {
  width: min(320px, 88vw);
  height: auto;
}

.muted { color: var(--muted) !important; }

.device-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 760px) {
  .device-grid { grid-template-columns: 1fr 1fr; }
}

.device-card {
  border: 1px solid rgba(126, 200, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  background: rgba(7, 18, 37, 0.45);
}

.device-card.highlight {
  border-color: rgba(126, 200, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(126, 200, 255, 0.12);
}

.device-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.device-badge.ios { background: #e8ecf4; }

.steps {
  margin: 14px 0 0;
  padding-inline-start: 1.2em;
  color: var(--silver);
  line-height: 1.8;
  font-size: 14px;
}

.hint-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(126, 200, 255, 0.3);
  background: rgba(126, 200, 255, 0.05);
  color: var(--silver);
  font-size: 14px;
  line-height: 1.7;
}

.tiny { font-size: 12px; margin-top: 10px; }

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-item {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(126, 200, 255, 0.2);
  background: rgba(7, 18, 37, 0.4);
  color: inherit;
  text-decoration: none;
}

.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item span { color: var(--muted); font-size: 13px; }

.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field > span {
  color: var(--silver);
  font-size: 13px;
  font-weight: 700;
}

.form-field em {
  color: #e35d6a;
  font-style: normal;
}

.form-field small {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  padding: 12px 14px;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(192, 192, 192, 0.55);
}

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-alert.ok {
  background: rgba(61, 207, 142, 0.12);
  color: #9be7c2;
  border: 1px solid rgba(61, 207, 142, 0.3);
}

.form-alert.error {
  background: rgba(227, 93, 106, 0.12);
  color: #ffb4bc;
  border: 1px solid rgba(227, 93, 106, 0.35);
}

.contact-form .btn {
  justify-self: start;
  min-width: 160px;
}

.quotes-strip {
  display: grid;
  gap: 10px;
}

@media (min-width: 760px) {
  .quotes-strip { grid-template-columns: repeat(3, 1fr); }
}

.mini-quote {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(126, 200, 255, 0.18);
  background: rgba(16, 32, 63, 0.75);
  color: var(--silver);
  font-size: 13px;
  line-height: 1.7;
}

.mini-quote strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 6px;
  font-size: 12px;
}

.foot {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 16px 22px;
  color: var(--muted);
  font-size: 13px;
}

.foot a {
  color: var(--silver);
  text-decoration: none;
}

.foot a:hover { color: var(--white); }

.social-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  margin: 4px auto 0;
  padding: 10px 16px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(126, 200, 255, 0.18);
  background: rgba(7, 18, 37, 0.7);
  color: var(--silver);
  font-size: 13px;
}

/* Download page */
.dl-hero {
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  align-items: center;
}

@media (min-width: 860px) {
  .dl-hero {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 28px 24px;
  }
}

.dl-hero-copy h1 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.25;
}

.dl-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(126, 200, 255, 0.12);
  border: 1px solid rgba(126, 200, 255, 0.28);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.dl-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.dl-benefits span {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(126, 200, 255, 0.18);
  background: rgba(7, 18, 37, 0.45);
  color: var(--silver);
  font-size: 12px;
  font-weight: 700;
}

.dl-actions {
  display: grid;
  gap: 10px;
}

@media (min-width: 560px) {
  .dl-actions {
    grid-template-columns: 1.2fr 1fr;
  }
}

.btn-xl {
  min-height: 52px;
  font-size: 15px;
  padding: 14px 18px;
}

.dl-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
}

.dl-hero-visual img {
  width: min(148px, 42vw);
  height: auto;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(126, 200, 255, 0.25);
}

.dl-hero-glow {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 200, 255, 0.28), transparent 68%);
  filter: blur(4px);
}

.dl-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(126, 200, 255, 0.2);
  background: rgba(7, 18, 37, 0.65);
}

.dl-tab {
  border: 0;
  border-radius: 10px;
  padding: 12px 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dl-tab.active {
  background: linear-gradient(145deg, rgba(126, 200, 255, 0.2), rgba(126, 200, 255, 0.08));
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(126, 200, 255, 0.25);
}

.dl-panel { display: none; }
.dl-panel.active { display: block; }

.dl-panel-head {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.dl-panel-head h2 {
  margin: 8px 0 6px;
  color: var(--white);
  font-size: 22px;
}

.dl-steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dl-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(126, 200, 255, 0.14);
  background: rgba(7, 18, 37, 0.4);
}

.dl-steps .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(126, 200, 255, 0.16);
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
}

.dl-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.dl-steps p {
  margin: 0;
  color: var(--silver);
  font-size: 13px;
  line-height: 1.6;
}

.dl-help {
  margin-top: 14px;
  border-radius: 12px;
  border: 1px dashed rgba(126, 200, 255, 0.28);
  background: rgba(126, 200, 255, 0.04);
  padding: 10px 12px;
}

.dl-help summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cyan);
}

.dl-help p {
  margin: 10px 0 4px;
  color: var(--silver);
  font-size: 13px;
  line-height: 1.7;
}

/* ========== Responsive: phones & desktops ========== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}

.shell {
  width: min(1180px, 100%);
  padding:
    max(10px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    24px
    max(12px, env(safe-area-inset-left));
  gap: 10px;
}

.nav {
  width: 100%;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  padding-bottom: 2px;
}

.nav::-webkit-scrollbar { display: none; }

.nav-link {
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.ticker {
  grid-template-columns: auto minmax(0, 1fr);
}

.ticker-track {
  min-width: 0;
}

.studio {
  min-height: auto;
  padding: 18px 14px 16px;
}

.orb {
  width: 128px;
  height: 128px;
}

.visualizer {
  max-width: 100%;
}

.info-card {
  width: 100%;
}

.page-card,
.feature-card,
.dl-hero,
.panel {
  max-width: 100%;
}

.page-card,
.feature-card {
  padding: 16px;
}

.dl-panel-head .btn,
.dl-actions .btn {
  width: 100%;
}

.side-list li,
.contact-item,
.btn,
.dl-tab {
  min-height: 44px;
}

/* Small phones */
@media (max-width: 559px) {
  .brand-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .brand-left {
    width: 100%;
    gap: 10px;
  }

  .brand-logo {
    height: 44px;
    max-width: min(220px, 62vw);
  }

  .brand-meta .kicker {
    font-size: 11px;
  }

  .brand-meta .tagline {
    font-size: 12px;
  }

  .clock-box {
    width: 100%;
    justify-content: center;
  }

  .ticker-badge {
    min-width: 58px;
    padding: 0 10px;
    font-size: 12px;
  }

  .ticker-text {
    font-size: 12px;
  }

  .title {
    font-size: 22px;
  }

  .orb {
    width: 112px;
    height: 112px;
    margin-top: 16px;
  }

  .orb-core {
    inset: 14px;
    font-size: 34px;
  }

  .quotes-strip {
    grid-template-columns: 1fr;
  }

  .dl-hero-visual {
    order: -1;
    min-height: 140px;
  }

  .dl-hero-visual img {
    width: 112px;
  }

  .dl-hero-copy h1 {
    font-size: 24px;
  }

  .dl-panel-head {
    flex-direction: column;
  }

  .dl-panel-head .btn {
    width: 100%;
  }

  .social-bar {
    max-width: calc(100% - 24px);
    text-align: center;
    border-radius: 16px;
  }

  .foot {
    padding-inline: 12px;
    font-size: 12px;
  }
}

/* Tablets */
@media (min-width: 560px) and (max-width: 919px) {
  .shell {
    padding: 14px 16px 28px;
  }

  .brand-logo {
    height: 50px;
  }

  .orb {
    width: 136px;
    height: 136px;
  }

  .quotes-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktops */
@media (min-width: 920px) {
  .shell {
    padding: 18px 20px 36px;
    gap: 14px;
  }

  .nav {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
  }

  .studio {
    min-height: 480px;
    padding: 28px 24px 24px;
  }

  .orb {
    width: 148px;
    height: 148px;
  }

  .brand-logo {
    height: 58px;
    max-width: 320px;
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .shell {
    width: min(1240px, 100%);
  }
}
