:root {
  --bg0: #050e0f;
  --bg1: #0a2220;
  --bg-soft: #12352f;
  --foam: #f2faf6;
  --muted: rgba(242, 250, 246, 0.68);
  --ink: #04110f;
  --signal: #ffb347;
  --signal-2: #3dd6c6;
  --signal-soft: rgba(255, 179, 71, 0.28);
  --line: rgba(242, 250, 246, 0.11);
  --ok: #45e0a1;
  --bad: #ff7a4d;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 4.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--foam);
  background: var(--bg0);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.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;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 55% at 85% -10%, rgba(255, 179, 71, 0.22), transparent 55%),
    radial-gradient(70% 50% at -5% 90%, rgba(61, 214, 198, 0.18), transparent 50%),
    radial-gradient(40% 30% at 50% 40%, rgba(18, 80, 70, 0.35), transparent 70%),
    linear-gradient(165deg, #030a0b 0%, #0c2824 42%, #071614 100%);
  animation: drift 22s ease-in-out infinite alternate;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(5, 14, 15, 0.7);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  background: linear-gradient(120deg, var(--foam) 40%, var(--signal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--foam);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--signal);
}

.nav-cta {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--signal), #ff9a2e);
  color: var(--ink);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--foam);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fff 0%, #e8f7f1 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-ghost {
  background: transparent;
  color: var(--foam);
  box-shadow: inset 0 0 0 1px rgba(242, 250, 246, 0.22);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(242, 250, 246, 0.45);
}

.text-link {
  color: var(--signal);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: end;
  padding: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 8vh, 5rem);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  right: -10%;
  top: 4%;
  width: min(62vw, 38rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 230, 180, 0.65), transparent 26%),
    radial-gradient(circle at 55% 45%, #2eb8a8 0%, #0d4a42 48%, transparent 70%);
  filter: blur(1px);
  animation: float-orb 14s var(--ease) infinite alternate;
}

.hero-ring {
  position: absolute;
  right: 8%;
  top: 16%;
  width: min(44vw, 26rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(242, 250, 246, 0.16);
  animation: spin-slow 56s linear infinite;
}

.hero-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 179, 71, 0.4);
}

.hero-freq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0 4%;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 85%);
}

.hero-freq span {
  flex: 1;
  max-width: 1.1rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, rgba(61, 214, 198, 0.15), rgba(255, 179, 71, 0.75));
  animation: eq 1.4s ease-in-out infinite;
  transform-origin: bottom;
}

.hero-freq span:nth-child(odd) {
  animation-duration: 1.1s;
}
.hero-freq span:nth-child(3n) {
  animation-duration: 1.7s;
}
.hero-freq span:nth-child(4n) {
  animation-delay: 0.2s;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  animation: rise 0.9s var(--ease) both;
}

.live-pill i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(69, 224, 161, 0.5);
  animation: ping 1.8s ease-out infinite;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 11vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
  animation: rise 0.9s var(--ease) both;
}

.brand-radio {
  font-size: clamp(2.4rem, 8vw, 5.2rem);
}

.headline {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
  color: var(--signal-2);
  max-width: 20ch;
  animation: rise 0.9s var(--ease) 0.08s both;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  color: var(--muted);
  animation: rise 0.9s var(--ease) 0.14s both;
}

.hero-actions {
  animation: rise 0.9s var(--ease) 0.22s both;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

/* Sections */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 72rem;
  margin: 0 auto;
}

.section-alt {
  max-width: none;
  background: linear-gradient(180deg, rgba(18, 53, 47, 0.35), rgba(10, 28, 26, 0.55));
  border-block: 1px solid var(--line);
}

.section-alt > * {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 14ch;
}

.section-text {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split-panel {
  display: grid;
  gap: 0.35rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.split-panel::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--signal), var(--signal-2));
}

.panel-label {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-label:first-child {
  margin-top: 0;
}

.panel-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.panel-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
  font-weight: 500;
  word-break: break-all;
  color: var(--signal-2);
}

.flow-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.flow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.12rem;
  transition: padding-left 0.25s var(--ease);
}

.flow-list li:hover {
  padding-left: 0.4rem;
}

.flow-list li span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--signal);
  font-size: 0.95rem;
}

.page-hero {
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) 0;
  max-width: 72rem;
  margin: 0 auto;
}

.page-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 7vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.page-lead {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.15rem;
}

/* Radio */
.radio-main {
  min-height: calc(100vh - var(--header-h) - 8rem);
}

.radio-stage {
  position: relative;
  min-height: calc(72vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 6vh, 3.5rem);
  max-width: 54rem;
  overflow: hidden;
}

.viz {
  position: absolute;
  inset: auto 0 35%;
  height: 28%;
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 0 0.25rem;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-radio.is-playing .viz {
  opacity: 0.85;
}

.viz span {
  flex: 1;
  max-width: 1.25rem;
  height: 20%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, var(--signal-2), var(--signal));
  transform-origin: bottom;
}

.page-radio.is-playing .viz span {
  animation: eq 0.9s ease-in-out infinite;
}

.page-radio.is-playing .viz span:nth-child(2n) {
  animation-duration: 1.15s;
}
.page-radio.is-playing .viz span:nth-child(3n) {
  animation-duration: 0.75s;
  animation-delay: 0.1s;
}

.controls {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.play {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #e7f6f0);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 0 0 var(--signal-soft);
}

.play:hover {
  transform: translateY(-2px);
}

.play[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--signal), #ff9a2e);
  box-shadow: 0 0 0 12px var(--signal-soft);
}

.play:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 2px;
}

.play[aria-pressed="true"] .play-icon {
  width: 11px;
  height: 12px;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) left / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) right / 3px 100% no-repeat;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #7a8f89;
}

.dot[data-state="online"] {
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(69, 224, 161, 0.22);
  animation: blink 1.8s ease-in-out infinite;
}

.dot[data-state="offline"] {
  background: var(--bad);
}

.dot[data-state="checking"] {
  background: var(--signal);
}

.sep {
  opacity: 0.45;
}

.bot-line {
  position: relative;
  z-index: 1;
  margin: 0.2rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.volume-row {
  position: relative;
  z-index: 1;
  max-width: 16rem;
}

.volume-row input[type="range"] {
  width: 100%;
  accent-color: var(--signal);
}

/* TeamSpeak data */
.data-list {
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.data-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.data-list dt {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.data-list dd {
  margin: 0;
  font-size: 1.25rem;
}

.data-list code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  color: var(--signal-2);
}

/* Contact */
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  font-size: 0.85rem;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(5, 14, 15, 0.55);
  color: var(--foam);
  font: inherit;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--signal);
  outline-offset: 1px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-errors {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  list-style: none;
  border-left: 3px solid var(--bad);
  background: rgba(255, 122, 77, 0.12);
  color: #ffd2bf;
}

.form-success {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--ok);
  background: rgba(69, 224, 161, 0.12);
}

.form-note {
  margin-top: 0.5rem;
}

/* Weather / News */
.weather-now {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin: 0 0 1.5rem;
}

.weather-temp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--signal);
}

.weather-meta {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.weather-meta strong {
  color: var(--foam);
  font-weight: 600;
}

.weather-days {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 36rem;
}

.weather-days li {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.wd-day {
  font-weight: 600;
}

.wd-label {
  color: var(--muted);
}

.wd-temp {
  font-variant-numeric: tabular-nums;
  color: var(--foam);
}

.news-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 42rem;
}

.news-list li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}

.news-list time {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.news-list a {
  color: var(--foam);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.news-list a:hover {
  color: var(--signal);
}

.news-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.news-list-compact li {
  padding: 0.75rem 0;
}

.news-list-compact a {
  font-size: 1.02rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 2.75rem clamp(1.25rem, 4vw, 3rem) 2rem;
  background: rgba(2, 8, 9, 0.72);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 34ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--foam);
}

.footer-copy {
  margin: 0;
  color: rgba(242, 250, 246, 0.4);
  font-size: 0.85rem;
}

/* Animations */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    filter: saturate(1) hue-rotate(0deg);
  }
  to {
    filter: saturate(1.15) hue-rotate(-6deg);
  }
}

@keyframes float-orb {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-4%, 5%) scale(1.05);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(69, 224, 161, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(69, 224, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(69, 224, 161, 0);
  }
}

@keyframes eq {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Responsive */
@media (max-width: 860px) {
  .section-split {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(5, 14, 15, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    padding: 0.85rem 0.25rem;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero-orb {
    opacity: 0.75;
    right: -22%;
    top: -2%;
  }

  .split-panel::before {
    left: 0;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  .headline {
    max-width: none;
  }

  .weather-days li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
