/* agenda_v2.css — Redesign "Amanhecer" da Agenda Astrológica */

/* ── Reset para a página de agenda ─────────────────────────────────────── */
html.agenda-v2-page .menu-flutuante   { display: none !important; }
html.agenda-v2-page body > footer     { display: none !important; }
html.agenda-v2-page .content {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  min-height: 0 !important;
}

/* ── Design tokens ──────────────────────────────────────────────────────── */
.ag-root {
  --bg:          #FBF7F1;
  --surface:     #FFFFFF;
  --surface-alt: #F4ECE1;
  --ink:         #3B352D;
  --muted:       #8B8073;
  --faint:       #BAAE9F;
  --line:        rgba(59,53,45,0.12);
  --line-soft:   rgba(59,53,45,0.07);
  --accent:      #C0876A;
  --accent-soft: #EEDCCF;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Hanken Grotesk', -apple-system, system-ui, sans-serif;
  --radius:      18px;
  --sect:        80px;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.ag-wrap       { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px); }
.ag-section    { padding-top: var(--sect); }
.ag-section-last { padding-bottom: var(--sect); }

/* ── Typography helpers ─────────────────────────────────────────────────── */
.ag-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ag-accent  { color: var(--accent); }
.ag-rule    { width: 24px; height: 1px; background: var(--line); flex: 0 0 auto; }
.ag-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.ag-section-sub { font-family: var(--sans); font-size: 13.5px; color: var(--muted); }
.ag-h1 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 6px 0 0;
  line-height: .98;
  letter-spacing: -.01em;
  font-size: clamp(52px,8vw,84px);
  white-space: nowrap;
}
.ag-h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.04;
  font-size: clamp(30px,4vw,42px);
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.ag-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px,5vw,56px);
  background: rgba(251,247,241,0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.ag-wordmark {
  display: flex;
  align-items: baseline;
  line-height: 1;
  text-decoration: none;
}
.ag-wordmark-seu {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
}
.ag-wordmark-ceu {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
}
.ag-header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px,3vw,28px);
}
.ag-navlink  { font-family: var(--sans); font-size: 14px; color: var(--muted); text-decoration: none; }
.ag-chip-outline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
}
.ag-chip-outline:hover { border-color: var(--accent); }

/* ── SIGN RING ───────────────────────────────────────────────────────────── */
.ag-signring { padding-top: 30px; }
.ag-signring-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.ag-signring-hint { font-family: var(--sans); font-size: 12px; color: var(--faint); }
.ag-signring-rail {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.ag-signring-rail::-webkit-scrollbar       { height: 6px; }
.ag-signring-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.ag-signchip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  width: 78px;
  padding: 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  cursor: pointer;
  transition: all .18s ease;
  scroll-snap-align: start;
  font-family: inherit;
  color: inherit;
}
.ag-signchip:hover { border-color: var(--accent); transform: translateY(-2px); }
.ag-signchip.on    { background: var(--ink); border-color: var(--ink); }
.ag-signchip-glyph { font-family: var(--serif); font-size: 26px; line-height: 1; color: var(--ink); }
.ag-signchip.on .ag-signchip-glyph { color: var(--surface-alt); }
.ag-signchip-name  { font-family: var(--sans); font-size: 11.5px; color: var(--muted); }
.ag-signchip.on .ag-signchip-name { color: #EADFD0; }

/* ── TABS ───────────────────────────────────────────────────────────────── */
.ag-tabs { display: inline-flex; padding: 4px; gap: 2px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; }
.ag-tab  { padding: 9px 22px; border-radius: 999px; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); transition: all .16s ease; text-decoration: none; }
.ag-tab.on { background: var(--ink); color: #fff; font-weight: 600; }

/* ── DATE NAV ───────────────────────────────────────────────────────────── */
.ag-datenav { display: flex; align-items: center; gap: 14px; }
.ag-arrow {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--muted); font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .16s ease; text-decoration: none;
}
.ag-arrow:hover { color: var(--ink); border-color: var(--accent); }
.ag-datenav-center { text-align: center; min-width: 150px; }
.ag-datenav-date   { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); line-height: 1.1; margin-top: 2px; }

/* ── ASTRO TOKEN ─────────────────────────────────────────────────────────── */
.ag-astro-row  { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.ag-astro      { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.ag-astro-glyph { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1; }
.ag-astro-label { font-family: var(--sans); font-size: 15px; color: var(--muted); }
.ag-astro-label b { color: var(--ink); font-weight: 600; }
.ag-astro-sign { font-family: var(--serif); font-size: 18px; color: var(--accent); line-height: 1; }
.ag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--faint); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.ag-hero {
  position: relative;
  overflow: hidden;
  padding: 40px clamp(20px,5vw,56px) 64px;
}
.ag-hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 620px 620px at 18% 8%,  rgba(247,217,198,.85) 0%, transparent 72%),
    radial-gradient(ellipse 560px 560px at 64% -6%, rgba(243,226,207,.80) 0%, transparent 72%),
    radial-gradient(ellipse 460px 460px at 92% 70%, rgba(235,206,218,.55) 0%, transparent 72%),
    radial-gradient(ellipse 420px 420px at 2%  88%, rgba(228,216,197,.55) 0%, transparent 72%);
  mix-blend-mode: multiply;
}
.ag-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 160px 160px;
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ag-hero-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px,5vw,64px);
  align-items: center;
}
.ag-hero-copy {}
.ag-hero-controls {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.ag-hero-art { position: relative; }
.ag-imgslot {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.ag-imgslot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 13px;
}
.ag-imgslot-inner svg { opacity: .4; }
.ag-orbits-wrap {
  position: absolute;
  right: -14px;
  top: -14px;
  opacity: .7;
  pointer-events: none;
}

/* ── INTERPRETATION ──────────────────────────────────────────────────────── */
.ag-interp    { max-width: 760px; }
.ag-lead {
  font-family: var(--serif);
  font-size: clamp(21px,2.6vw,27px);
  line-height: 1.46;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 20px;
}
.ag-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.66;
  color: var(--muted);
  margin: 0 0 32px;
}
.ag-insights {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ag-insight { border-left: 2px solid var(--accent-soft); padding-left: 18px; }
.ag-insight-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.ag-insight-mark { color: var(--accent); font-size: 13px; }
.ag-insight-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ag-insight-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

/* ── WEEK VIEW ───────────────────────────────────────────────────────────── */
.ag-week-list   { display: flex; flex-direction: column; }
.ag-week-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 6px;
  border-top: 1px solid var(--line);
  transition: background .15s ease;
}
.ag-week-row:last-child { border-bottom: 1px solid var(--line); }
.ag-week-row:hover      { background: var(--surface); }
.ag-week-row.hot        { background: var(--surface-alt); }
.ag-week-date  { display: flex; flex-direction: column; align-items: center; width: 46px; flex: 0 0 auto; }
.ag-week-dow   { font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.ag-week-num   { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink); line-height: 1; }
.ag-week-label { flex: 1; font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); }
.ag-week-flag  {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-soft); border-radius: 999px; padding: 4px 10px;
}
.ag-week-go    { color: var(--faint); font-size: 18px; text-decoration: none; }
.ag-week-go:hover { color: var(--accent); }

/* ── MONTH VIEW ──────────────────────────────────────────────────────────── */
.ag-month-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ag-month-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
}
.ag-month-glyph { font-family: var(--serif); font-size: 30px; color: var(--accent); line-height: 1; }
.ag-month-date  { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin-top: auto; }
.ag-month-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); line-height: 1.2; }

/* ── PLANET RAIL ─────────────────────────────────────────────────────────── */
.ag-planet-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scrollbar-width: thin;
}
.ag-planet-rail::-webkit-scrollbar       { height: 6px; }
.ag-planet-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.ag-planet {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  transition: all .16s ease;
  font-family: inherit;
  color: inherit;
}
.ag-planet:hover { border-color: var(--accent); }
.ag-planet.on    { background: var(--surface-alt); border-color: var(--accent); }
.ag-planet-glyph  { font-family: var(--serif); font-size: 21px; color: var(--ink); line-height: 1; }
.ag-planet-name   { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); }
.ag-planet-sign   { font-family: var(--serif); font-size: 15px; color: var(--accent); }
.ag-planet-detail {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ag-planet-detail-glyph { font-family: var(--serif); font-size: 40px; color: var(--ink); line-height: 1; flex: 0 0 auto; }
.ag-planet-detail-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.ag-planet-status       { font-family: var(--sans); font-size: 13px; color: var(--faint); font-weight: 400; }
.ag-planet-detail-note  { font-family: var(--sans); font-size: 15px; line-height: 1.55; color: var(--muted); margin: 5px 0 0; max-width: 620px; }

/* ── PERSONALIZAÇÃO ──────────────────────────────────────────────────────── */
.ag-personal {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}
.ag-personal-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 500px 500px at 80% 20%, rgba(247,217,198,.6) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(243,226,207,.5) 0%, transparent 70%);
  mix-blend-mode: multiply;
}
.ag-personal-inner { position: relative; padding: clamp(26px,4vw,44px); }
.ag-personal-head  { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.ag-personal-glyph { font-family: var(--serif); font-size: 52px; line-height: 1; color: var(--ink); flex: 0 0 auto; }
.ag-personal-title { font-family: var(--serif); font-size: clamp(28px,3.6vw,38px); font-weight: 500; color: var(--ink); margin: 4px 0 0; line-height: 1; }
.ag-personal-teaser {
  font-family: var(--serif);
  font-size: clamp(19px,2.4vw,24px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 22px;
  max-width: 720px;
}

/* locked layer */
.ag-locked { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.ag-locked-blur { padding: 26px 28px; filter: blur(7px); opacity: .55; user-select: none; pointer-events: none; }
.ag-locked-blur p { font-family: var(--serif); font-size: 20px; line-height: 1.5; color: var(--ink); margin: 0 0 14px; }
.ag-locked-veil {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  gap: 12px; padding: clamp(24px,4vw,40px);
  background: linear-gradient(180deg, rgba(244,236,225,0) 0%, rgba(244,236,225,.7) 38%, var(--surface-alt) 78%);
}
.ag-lock-badge { font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.ag-lock-title { font-family: var(--serif); font-size: clamp(24px,3vw,32px); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.08; }
.ag-lock-title em { font-style: italic; color: var(--accent); }
.ag-lock-sub   { font-family: var(--sans); font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 460px; }
.ag-lock-cta-row { display: flex; align-items: center; gap: 18px; margin-top: 6px; flex-wrap: wrap; }
.ag-cta {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px;
  border-radius: 999px; background: var(--ink); color: #fff;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  transition: transform .15s ease; text-decoration: none;
}
.ag-cta:hover { transform: translateY(-2px); }
.ag-cta-arrow { opacity: .7; }
.ag-lock-price     { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.ag-lock-price-sub { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--faint); }
.ag-lock-foot      { font-family: var(--sans); font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.ag-lock-foot a    { color: var(--ink); font-weight: 600; text-decoration: none; }
.ag-lock-foot a:hover { text-decoration: underline; }

/* ── EVENTOS ─────────────────────────────────────────────────────────────── */
.ag-events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ag-event {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .12s ease, box-shadow .12s ease;
}
.ag-event:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,53,45,.1); }
.ag-event-media {
  position: relative; height: 118px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ag-event-bigglyph {
  position: relative; font-family: var(--serif); font-size: 50px;
  color: var(--ink); line-height: 1;
}
.ag-event-sign {
  position: absolute; right: 16px; bottom: 12px;
  font-family: var(--serif); font-size: 22px; color: var(--accent);
}
.ag-event-body { padding: 20px 22px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ag-event-tag  {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); align-self: flex-start; padding: 5px 11px; border: 1px solid var(--line);
  border-radius: 999px;
}
.ag-event-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); margin: 2px 0 0; line-height: 1.12; }
.ag-event-desc  { font-family: var(--sans); font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0; flex: 1; }
.ag-event-foot  { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.ag-event-when  { font-family: var(--sans); font-size: 12.5px; color: var(--faint); }
.ag-event-go    { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none; }
.ag-event-go:hover { color: var(--accent); }

/* ── COMPARTILHE ─────────────────────────────────────────────────────────── */
.ag-share {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface-alt);
}
.ag-share-wash {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 480px 300px at 5% 50%, rgba(247,217,198,.5) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 95% 50%, rgba(210,219,232,.45) 0%, transparent 70%);
  mix-blend-mode: multiply;
}
.ag-share-orbits { position: absolute; right: -20px; top: -20px; opacity: .5; pointer-events: none; }
.ag-share-inner  { position: relative; max-width: 560px; margin: 0 auto; text-align: center; padding: clamp(36px,5vw,52px) 32px; }
.ag-share-title  { font-family: var(--serif); font-size: clamp(28px,4vw,34px); font-weight: 500; color: var(--ink); margin: 0 0 12px; }
.ag-share-sub    { font-family: var(--sans); font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0 0 26px; }
.ag-chip-solid {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  text-decoration: none; transition: transform .15s ease;
}
.ag-chip-solid:hover { transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.ag-footer {
  border-top: 1px solid var(--line);
  margin-top: var(--sect);
  padding: 36px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.ag-footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.ag-footer-link  { font-family: var(--sans); font-size: 13px; color: var(--muted); text-decoration: none; }
.ag-footer-link:hover { color: var(--ink); }
.ag-footer-copy  { font-family: var(--sans); font-size: 12px; color: var(--faint); }

/* ── Helper ──────────────────────────────────────────────────────────────── */
.ag-hide-sm { display: initial; }
.ag-pending-badge {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; color: var(--muted);
  background: var(--surface-alt); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 10px; margin-bottom: 12px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ag-hero-grid    { grid-template-columns: 1fr; }
  .ag-hero-art     { order: -1; max-width: 520px; }
  .ag-events-grid  { grid-template-columns: 1fr 1fr; }
  .ag-month-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .ag-hide-sm { display: none; }
}
@media (max-width: 640px) {
  .ag-root { --sect: 56px; }
  .ag-h1   { white-space: normal; }
  .ag-insights     { grid-template-columns: 1fr; gap: 16px; }
  .ag-events-grid  { grid-template-columns: 1fr; }
  .ag-hero-controls { flex-direction: column; align-items: stretch; gap: 16px; }
  .ag-tabs { width: 100%; justify-content: space-between; }
  .ag-tab  { flex: 1; text-align: center; padding: 10px 0; }
  .ag-datenav { justify-content: center; }
  .ag-planet-detail { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ag-lock-cta-row  { flex-direction: column; align-items: flex-start; gap: 12px; }
}
