/* Reklama Radio: palette taken from the station logo (navy #344769, orange #f7941e) */
:root {
  --navy: #344769;
  --navy-deep: #1b2540;
  --navy-ink: #0f1830;
  --orange: #f7941e;
  --orange-hot: #f47b20;
  --orange-hover: #ffa43a;
  --orange-text: #a85400; /* orange dark enough for text on white */
  --paper: #ffffff;
  --mist: #f2f5fa;
  --line: #e1e6ef;
  --text: #1f2a3f;
  --muted: #5a667d;

  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;

  --radius: 14px;
  --header-h: 64px;
  --shadow: 0 3px 8px rgba(15, 24, 48, .18), 0 1px 2px rgba(15, 24, 48, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--orange-text); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; color: var(--navy-deep); }
p { margin: 0 0 1em; }
address { font-style: normal; }
svg { width: 1em; height: 1em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 760px) { .container { padding: 0 32px; } }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy-deep); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 44px; padding: .55em 1.1em .55em .55em;
  font-family: var(--font-display); font-weight: 800; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 56px; font-size: 1rem; padding: .5em 1.4em .5em .5em; }
.btn-orange { background: var(--orange); color: var(--navy-ink); }
.btn-orange:hover { background: var(--orange-hover); color: var(--navy-ink); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.7); padding-left: 1.6em; padding-right: 1.6em; }
.btn-outline:hover { background: #fff; color: var(--navy-ink); }
.btn-icon {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-ink); color: #fff;
}
.btn-lg .btn-icon { width: 42px; height: 42px; }
.btn-icon svg { width: 55%; height: 55%; margin-left: 2px; }
.btn .chev { width: 16px; height: 16px; margin-left: .4em; }
.ic-pause { display: none; }
[aria-pressed="true"] .ic-play { display: none; }
[aria-pressed="true"] .ic-pause { display: inline; }
[aria-pressed="true"] .btn-icon svg { margin-left: 0; }

.round-play {
  flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-ink); color: #fff; border: 0; cursor: pointer; transition: background-color .15s;
}
.round-play svg { width: 20px; height: 20px; }
.round-play .ic-play { margin-left: 3px; }
.round-play:hover { background: var(--orange-hot); color: var(--navy-ink); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); }
.header-inner { display: flex; align-items: center; gap: 10px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; text-decoration: none; }
.brand img { width: 112px; }
.brand-tag { display: none; font-size: .8rem; font-weight: 600; color: var(--navy-deep); padding-left: 14px; border-left: 1px solid var(--line); line-height: 2; white-space: nowrap; }
@media (min-width: 560px) { .brand-tag { display: block; } }

.site-nav { order: 3; }
.nav-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { display: block; width: 20px; height: 2px; background: var(--navy-deep); border-radius: 2px; position: relative; transition: transform .2s, background-color .2s; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }
.nav-menu { list-style: none; margin: 0; padding: 8px 16px 16px; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.js .nav-menu:not(.is-open) { display: none; }
.nav-menu a { display: block; padding: 12px 4px; font-weight: 700; color: var(--navy-deep); text-decoration: none; border-bottom: 1px solid var(--mist); }
.nav-menu a:hover { color: var(--orange-text); }
html:not(.js) .nav-toggle { display: none; }
html:not(.js) .nav-menu { position: static; box-shadow: none; border: 0; display: flex; flex-wrap: wrap; gap: 0 14px; padding: 0; }
html:not(.js) .header-inner { flex-wrap: wrap; }
@media (max-width: 420px) {
  .btn-live { padding-right: .8em; font-size: .8rem; }
  .btn-live .btn-icon { width: 28px; height: 28px; }
  .brand img { width: 96px; }
}
@media (min-width: 980px) {
  .site-nav { order: 0; }
  .nav-toggle { display: none; }
  .nav-menu, .js .nav-menu:not(.is-open) { display: flex; gap: 2px; position: static; padding: 0; background: none; border: 0; box-shadow: none; }
  .nav-menu a { border: 0; padding: 8px 12px; font-size: .88rem; font-weight: 600; border-radius: 8px; }
  .nav-menu a:hover { background: var(--mist); }
  .header-inner { gap: 24px; }
  .brand img { width: 128px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(ellipse at 70% 30%, #2a3c66 0%, var(--navy-deep) 45%, #0a1124 100%);
  color: #fff; padding: 44px 0 36px;
}
.hero-art { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
/* Darken the left side so the headline stays readable over the photo */
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,17,36,.55) 0%, rgba(10,17,36,.8) 100%);
}

.hero-inner { position: relative; }
.hero h1 { color: #fff; margin: 0 0 .45em; }
/* Sizes match the earlier hero lettering: title at the old kicker size, frequency at the old h1 size */
.hero-name {
  display: block; font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.6rem, 1rem + 3.2vw, 2.75rem); line-height: 1.05; margin-bottom: .3em;
}
.hero-freq { display: block; font-weight: 800; font-size: clamp(1.35rem, 1rem + 1.6vw, 2rem); line-height: 1.15; }
.hero-kicker { font-weight: 600; font-size: 1.05rem; color: #fff; margin: 0 0 .3em; }
.hero-sub { font-weight: 600; font-size: 1.05rem; color: #dfe6f3; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-actions:focus { outline: none; }
.player-error { margin: 14px 0 0; font-size: .9rem; font-weight: 600; color: #ffb4ab; }

@media (min-width: 900px) {
  .hero { padding: 64px 0 56px; min-height: 520px; display: flex; align-items: center; }
  .hero-inner { width: 100%; }
  .hero-photo { object-position: 90% center; }
  .hero-art::after {
    background: linear-gradient(90deg, rgba(10,17,36,.92) 0%, rgba(10,17,36,.75) 32%, rgba(10,17,36,.15) 58%, rgba(10,17,36,0) 70%);
  }
}
@media (min-width: 1300px) { .hero-photo { object-position: 70% center; } }

/* ---------- Today on air ---------- */
.today { background: var(--mist); border-bottom: 1px solid var(--line); padding: 22px 0; }
.today-inner { display: grid; gap: 14px; align-items: center; }
.today-title { margin: 0; font-weight: 900; text-transform: uppercase; font-size: 1.5rem; line-height: 1; }
.today-title span { color: var(--orange-hot); }
.slot-card {
  display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; padding-right: 14px;
}
.slot-card img { width: 84px; height: 84px; object-fit: cover; flex: none; }
.slot-body { flex: 1; min-width: 0; padding: 8px 0; }
.slot-time { margin: 0; white-space: nowrap; font-weight: 800; font-size: .92rem; color: var(--navy-deep); }
.slot-host { margin: 0 0 6px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.slot-meter { height: 5px; border-radius: 3px; background: var(--line); overflow: hidden; }
.slot-progress { display: block; height: 100%; width: var(--progress, 0%); background: var(--orange-hot); border-radius: 3px; transition: width .6s; }
.slot-state { margin: 4px 0 0; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
[data-slot].is-live .slot-state { color: #c0271b; }
.today-link {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; min-height: 60px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
  font-weight: 700; color: var(--navy-deep); text-decoration: none;
}
.today-link .ic-cal { width: 24px; height: 24px; color: var(--navy-deep); }
.today-link .chev { width: 18px; height: 18px; margin-left: auto; }
.today-link:hover { border-color: var(--orange); color: var(--navy-deep); }
@media (min-width: 700px) { .today-inner { grid-template-columns: 1fr 1fr; } .today-title { grid-column: 1 / -1; } .today-link { grid-column: 1 / -1; } }
@media (min-width: 1100px) {
  .today-inner { grid-template-columns: auto 1fr 1fr 180px; gap: 16px; }
  .today-title, .today-link { grid-column: auto; }
  .today-title { font-size: 1.6rem; }
}

/* ---------- About / features ---------- */
.about { padding: 40px 0; background: #fff; }
.about-inner { display: grid; gap: 26px; text-align: center; }
.about-intro h2 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange-text); margin-bottom: .4em; }
.about-intro p { font-size: 1.1rem; font-weight: 500; color: var(--text); max-width: 66ch; margin: 0 auto; }
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.features li { display: flex; gap: 16px; align-items: flex-start; justify-content: center; text-align: left; }
.feature-icon { width: 52px; height: 52px; flex: none; color: var(--orange-hot); }
.features h3 { font-size: 1rem; margin-bottom: .2em; }
.features p { margin: 0; font-size: .9rem; color: var(--muted); }
@media (min-width: 760px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .features li { padding: 0 22px; border-left: 1px solid var(--line); }
  .features li:first-child { border-left: 0; }
}
@media (min-width: 1100px) { .about { padding: 56px 0; } }

/* ---------- Hosts + schedule ---------- */
.people { background: var(--mist); padding: 40px 0 56px; }
.people-grid { display: grid; gap: 18px; }
/* Same treatment as the "About Reklama Radio" heading */
.people-title { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange-text); margin: 0 0 2px; }
@media (min-width: 600px) { .people-grid { grid-template-columns: 1fr 1fr; } .people-title, .schedule-card { grid-column: 1 / -1; } }
@media (min-width: 1000px) { .people-grid { grid-template-columns: 1fr 1fr 1.35fr; } .people-title { grid-column: 1 / -1; } .schedule-card { grid-column: auto; } }
.host-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.host-card img { width: 100%; aspect-ratio: 1 / .86; object-fit: cover; object-position: center 30%; }
.host-bar { padding: 16px 18px 18px; }
.host-text h3 { font-size: 1.1rem; margin: 0; }
.host-slot { margin: 2px 0 4px; font-size: .78rem; font-weight: 700; color: var(--orange-text); }
.host-bio { margin: 0; font-size: .88rem; color: var(--muted); font-style: italic; }

.schedule-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 22px 18px; }
.schedule-title { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; margin-bottom: 14px; }
.schedule-title svg { width: 26px; height: 26px; }
.schedule-list { list-style: none; margin: 0; padding: 0; }
.schedule-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.schedule-list li.is-live { background: linear-gradient(90deg, #fff3e3, transparent); box-shadow: inset 4px 0 0 var(--orange-hot); padding-left: 12px; margin-left: -12px; }
.schedule-list img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.schedule-list .slot-time { color: var(--orange-text); font-size: .88rem; }
.schedule-list .slot-host { font-size: 1rem; font-weight: 700; color: var(--navy-deep); margin: 0; }
.slot-days { margin: 0; font-size: .82rem; color: var(--muted); }
.slot-live { font-weight: 800; color: #c0271b; text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; margin-left: 6px; }
.schedule-note {
  display: inline-flex; align-items: center; gap: 10px; margin: 12px 0 0; padding: 10px 18px;
  border-radius: 999px; background: var(--navy-deep); color: #fff; font-size: .82rem; font-weight: 600;
}
.schedule-note svg { width: 18px; height: 18px; }

/* ---------- Advertise ---------- */
.advertise {
  position: relative; overflow: hidden; isolation: isolate; color: #d7dfed; padding: 56px 0;
  background: linear-gradient(135deg, #1e2c50, var(--navy-ink));
}
.advertise::before {
  content: ""; position: absolute; right: 0; bottom: 0; width: 60%; height: 65%; z-index: -1;
  background: url("/assets/skyline-night.svg") right bottom / auto 100% repeat-x; opacity: .3;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.advertise-grid { display: grid; gap: 36px; align-items: center; }
.ad-pitch h2 { color: #fff; text-transform: uppercase; font-weight: 900; font-size: clamp(2rem, 1.3rem + 2.6vw, 2.6rem); }
.ad-pitch h2 span { color: var(--orange); }
.ad-pitch p { font-size: 1.02rem; max-width: 48ch; }
.stats { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stats li { border: 1.5px solid rgba(255,255,255,.35); border-radius: 12px; padding: 12px; background: rgba(255,255,255,.03); }
.stats strong { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 1rem + 1.6vw, 2rem); font-weight: 800; color: var(--orange); line-height: 1.1; }
.stats span { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; font-size: .72rem; font-weight: 600; color: #c6cfdf; margin-top: 4px; line-height: 1.25; }
.stats svg { width: 20px; height: 20px; flex: none; color: #fff; }
.ad-map { margin: 0; }
.ad-map a { display: block; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 8px rgba(0, 0, 0, .45), 0 1px 2px rgba(0, 0, 0, .3); }
.ad-map img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; transition: transform .3s; }
.ad-map a:hover img { transform: scale(1.03); }
.ad-map figcaption { font-size: .78rem; color: #aab5c9; margin-top: 8px; }
.ad-reach h3 { color: #fff; text-transform: uppercase; font-size: 1.1rem; line-height: 1.3; margin-bottom: 14px; }
.ad-reach p { font-size: .92rem; }
.ad-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ad-contact li { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; }
.ad-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--orange); }
.ad-contact a, .ad-contact address { color: #fff; overflow-wrap: anywhere; }
.ad-contact a:hover { color: var(--orange); }
@media (min-width: 900px) {
  .advertise { padding: 64px 0; }
  .advertise-grid { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
  .ad-reach { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.2fr; gap: 0 48px; align-items: start; }
  .ad-reach h3, .ad-reach p { grid-column: 1; }
  .ad-contact { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
}
@media (min-width: 1200px) {
  .advertise-grid { grid-template-columns: 1.05fr 1.1fr .85fr; gap: 40px; }
  .ad-reach { grid-column: auto; display: block; }
  .ad-contact { margin-top: 4px; }
}

/* ---------- Part of Reklama Media ---------- */
.family { background: var(--mist); padding: 32px 0; border-bottom: 1px solid var(--line); }
.family-inner { display: grid; gap: 20px; align-items: center; }
.family-link { text-decoration: none; color: inherit; }
.family-link:hover { color: inherit; }
.family-brand { display: flex; flex-direction: column; color: var(--navy-deep); line-height: 1; }
.family-kicker { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.family-brand img { width: 168px; }

/* Channel cards, styled after the ecosystem cards on reklamamedia.com */
.family-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.family-card {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--orange-hot);
  border-radius: 10px; padding: 14px 14px 12px;
  box-shadow: var(--shadow);
}
.family-kind { font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-text); }
.family-card img { width: 100%; max-width: 132px; height: auto; margin: 2px 0 auto; }
.family-meta {
  font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  padding-top: 10px; border-top: 1px solid var(--line);
  /* Reserve two lines on every card so the logos and dividers line up */
  line-height: 1.5; min-height: calc(2 * 1.5em);
}
.family-card { transition: transform .15s, box-shadow .15s, border-color .15s; }
.family-link:hover .family-card { border-color: var(--orange); box-shadow: 0 5px 12px rgba(15, 24, 48, .24), 0 1px 3px rgba(15, 24, 48, .14); }
.family-card.is-current { border-color: var(--orange); box-shadow: 0 4px 10px rgba(247, 148, 30, .38), 0 1px 3px rgba(15, 24, 48, .14); }
.family-card.is-current .family-meta { color: var(--orange-text); }
@media (min-width: 620px) { .family-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) {
  .family-inner { grid-template-columns: 180px 1fr; gap: 28px; }
  .family-brand { padding-right: 26px; border-right: 1px solid var(--line); }
  .family-list { grid-template-columns: repeat(6, 1fr); gap: 10px; }
}

/* ---------- App ---------- */
.app { position: relative; overflow: hidden; isolation: isolate; color: var(--navy-ink); padding: 40px 0; background: var(--orange-hot); }
.app-art { position: absolute; inset: 0; z-index: -1; }
/* The phone sits about two thirds across the photo, so bias the crop to bring it toward the middle */
.app-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 35% center; }
/* Lighten the sides so the dark text stays readable over the photo */
.app-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(247,140,30,.92) 0 50%, rgba(247,140,30,.3) 100%);
}
.app-inner { position: relative; display: grid; gap: 22px; }
.app h2 { color: var(--navy-ink); font-weight: 900; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); }
.app-copy p { font-weight: 600; font-size: 1.05rem; }
/* Add-to-home-screen card: phones only, where a home screen icon makes sense */
.install { display: grid; gap: 14px; justify-items: start; }
.install-card {
  display: flex; align-items: center; gap: 14px; width: 100%; max-width: 420px;
  padding: 12px 16px 12px 12px; text-align: left; cursor: pointer;
  background: #fff; border: 1px solid rgba(15, 24, 48, .1); border-radius: 14px;
  box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.install-card:hover { box-shadow: 0 5px 12px rgba(15, 24, 48, .24), 0 1px 3px rgba(15, 24, 48, .14); }
.install-icon { flex: none; width: 54px; height: 54px; border-radius: 12px; overflow: hidden; background: var(--navy-ink); }
.install-icon img { width: 100%; height: 100%; object-fit: cover; }
.install-text { display: grid; gap: 2px; }
.install-title { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--navy-deep); }
.install-sub { font-size: .8rem; line-height: 1.35; color: var(--muted); }
.install-steps {
  max-width: 420px; padding: 14px 16px; border-radius: 12px;
  background: rgba(15, 24, 48, .88); color: #fff; font-size: .85rem;
}
.install-steps-title { margin: 0 0 6px; font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.install-steps ol { margin: 0; padding-left: 18px; display: grid; gap: 4px; }
.install-steps strong { color: var(--orange); }
/* Phones only: a home screen icon is meaningless on a desktop */
@media (min-width: 900px) { .install-card, .install-steps { display: none; } }

/* QR card: only useful away from a phone, so it appears from tablet width up */
.app-qr { display: none; }
@media (min-width: 900px) {
  .app-qr {
    display: flex; align-items: center; gap: 12px; justify-self: start; max-width: 330px; margin-bottom: 18px;
    background: rgba(255, 255, 255, .95); border-radius: 12px; padding: 11px 15px 11px 11px;
    box-shadow: var(--shadow);
  }
  .app-qr img { flex: none; width: 80px; height: 80px; border-radius: 6px; }
  .app-qr p { margin: 0; font-size: .78rem; line-height: 1.38; color: var(--navy-deep); }
  .app-qr strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: .88rem; margin-bottom: 3px; }
}
.social-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px 10px 12px; border-radius: 999px; background: var(--navy-ink); color: #fff; font-weight: 700; text-decoration: none; }
.social-pill svg { width: 24px; height: 24px; color: #fff; }
.social-pill:hover { background: #1877f2; color: #fff; }
@media (min-width: 900px) {
  .app { padding: 64px 0; min-height: 420px; display: flex; align-items: center; }
  /* Narrower than the rest of the page: the text sits just left of the phone in the photo,
     so the text and the phone read as one centred group. */
  .app-inner { width: 100%; max-width: 1040px; grid-template-columns: minmax(0, 48%) 1fr; align-items: center; }
  /* The photo's phone sits in the middle, so only fade the outer edges */
  .app-art::after {
    background: linear-gradient(90deg, rgba(247,140,30,.9) 0%, rgba(247,140,30,.55) 28%, rgba(247,140,30,0) 45%,
                rgba(247,140,30,0) 58%, rgba(247,140,30,.55) 74%, rgba(247,140,30,.9) 100%);
  }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: #c3cce0; font-size: .9rem; }
.footer-top { display: grid; gap: 22px; padding-top: 30px; padding-bottom: 26px; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; line-height: 1.2; }
.footer-tag { white-space: nowrap; font-weight: 600; color: #c3cce0; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.footer-contact a, .footer-contact address { color: #fff; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--orange); text-decoration: underline; }
.footer-social { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.footer-social svg { width: 22px; height: 22px; }
.footer-social:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 16px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--orange); }
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-contact { grid-column: 1 / -1; grid-row: 2; }
}
@media (min-width: 1200px) {
  .footer-top { grid-template-columns: auto 1fr auto; gap: 40px; }
  .footer-contact { grid-column: auto; grid-row: auto; }
  .footer-contact address, .footer-contact a { white-space: nowrap; }
  .footer-contact { grid-template-columns: auto auto auto; justify-content: center; gap: 28px; padding: 0 28px; border-left: 1px solid rgba(255,255,255,.15); border-right: 1px solid rgba(255,255,255,.15); }
}
