/* ==========================================================================
   Pirates Ocean — Official Site Stylesheet
   ========================================================================== */

:root {
  /* Core palette */
  --po-black: #050a12;
  --po-navy-950: #060d18;
  --po-navy-900: #0a1626;
  --po-navy-800: #0e1e33;
  --po-navy-700: #142c47;
  --po-navy-600: #1b3a5c;
  --po-blue-500: #245583;

  --po-gold-100: #f7e7b8;
  --po-gold-300: #e8c766;
  --po-gold-500: #cda43c;
  --po-gold-600: #b3872a;
  --po-gold-700: #8a6a21;

  --po-red-500: #9c2b2b;
  --po-red-600: #7a1f1f;

  --po-ink-100: #f4f1e8;
  --po-ink-300: #cfd6e0;
  --po-ink-400: #a9b4c4;
  --po-ink-500: #8291a7;

  --po-border: rgba(232, 199, 102, 0.18);
  --po-border-strong: rgba(232, 199, 102, 0.38);

  --po-font-display: "Cinzel", "Georgia", "Times New Roman", serif;
  --po-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --po-radius-sm: 8px;
  --po-radius-md: 14px;
  --po-radius-lg: 22px;

  --po-shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --po-shadow-gold: 0 0 0 1px rgba(232, 199, 102, 0.25), 0 18px 50px -18px rgba(205, 164, 60, 0.35);

  --po-max-width: 1180px;
  --po-transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(36, 85, 131, 0.35), transparent 60%),
    linear-gradient(180deg, var(--po-navy-950) 0%, var(--po-black) 100%);
  color: var(--po-ink-300);
  font-family: var(--po-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

a {
  color: var(--po-gold-300);
  text-decoration: none;
  transition: color var(--po-transition);
}

a:hover,
a:focus-visible {
  color: var(--po-gold-100);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--po-gold-300);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--po-font-display);
  color: var(--po-ink-100);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.1em;
}

ul {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}

li {
  margin-bottom: 0.4em;
}

.container {
  width: 100%;
  max-width: var(--po-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--po-gold-300);
  color: var(--po-black);
  padding: 10px 16px;
  border-radius: var(--po-radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--po-transition);
}

.skip-link:focus {
  top: 12px;
  color: var(--po-black);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 28px;
  border-radius: var(--po-radius-sm);
  font-family: var(--po-font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--po-transition), box-shadow var(--po-transition), background var(--po-transition), border-color var(--po-transition), color var(--po-transition);
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--po-gold-100), var(--po-gold-500) 65%, var(--po-gold-600));
  color: #241a05;
  box-shadow: var(--po-shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 1px rgba(232, 199, 102, 0.45), 0 22px 55px -16px rgba(205, 164, 60, 0.55);
  color: #241a05;
}

.btn-secondary {
  background: rgba(244, 241, 232, 0.04);
  color: var(--po-ink-100);
  border-color: var(--po-border-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(232, 199, 102, 0.1);
  border-color: var(--po-gold-300);
  color: var(--po-gold-100);
}

.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn-block {
  width: 100%;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 24, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--po-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--po-max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--po-ink-100);
}

.brand:hover,
.brand:focus-visible {
  color: var(--po-ink-100);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--po-border-strong);
  box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.7);
}

.brand-name {
  font-family: var(--po-font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  white-space: nowrap;
}

.brand-name .accent {
  color: var(--po-gold-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--po-ink-300);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--po-gold-300);
  transition: right var(--po-transition);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--po-ink-100);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-mobile-cta {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--po-border-strong);
  border-radius: var(--po-radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--po-ink-100);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 24px 110px;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(232, 199, 102, 0.08), transparent 65%),
    repeating-linear-gradient(115deg, rgba(232, 199, 102, 0.025) 0px, rgba(232, 199, 102, 0.025) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hero-logo {
  width: 168px;
  height: 168px;
  margin: 0 auto 32px;
  border-radius: 32px;
  border: 1px solid var(--po-border-strong);
  box-shadow: var(--po-shadow-gold), var(--po-shadow-soft);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--po-font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--po-gold-300);
  margin-bottom: 22px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--po-border-strong);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 0.3em;
  background: linear-gradient(180deg, var(--po-ink-100) 30%, var(--po-gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--po-font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--po-ink-100);
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--po-ink-400);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--po-ink-500);
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(20, 44, 71, 0.18) 20%, rgba(20, 44, 71, 0.18) 80%, transparent);
  border-top: 1px solid var(--po-border);
  border-bottom: 1px solid var(--po-border);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-family: var(--po-font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--po-gold-300);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5em;
}

.section-head p {
  color: var(--po-ink-400);
  margin: 0;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(20, 44, 71, 0.35), rgba(10, 22, 38, 0.55));
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  padding: 32px 28px;
  transition: border-color var(--po-transition), transform var(--po-transition), box-shadow var(--po-transition);
}

.feature-card:hover {
  border-color: var(--po-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--po-shadow-soft);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--po-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(232, 199, 102, 0.16), rgba(232, 199, 102, 0.04));
  border: 1px solid var(--po-border-strong);
  margin-bottom: 20px;
  color: var(--po-gold-300);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.feature-card p {
  color: var(--po-ink-400);
  font-size: 0.94rem;
  margin-bottom: 0.9em;
}

.feature-card ul {
  color: var(--po-ink-400);
  font-size: 0.92rem;
  padding-left: 1.1em;
  margin-bottom: 0;
}

.feature-card li {
  margin-bottom: 0.5em;
}

.feature-card li::marker {
  color: var(--po-gold-500);
}

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-copy p {
  color: var(--po-ink-400);
  font-size: 1.02rem;
}

.about-copy .lede {
  color: var(--po-ink-100);
  font-size: 1.18rem;
  font-family: var(--po-font-display);
  font-weight: 600;
  line-height: 1.5;
}

.about-panel {
  background: linear-gradient(180deg, rgba(20, 44, 71, 0.4), rgba(10, 22, 38, 0.6));
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  padding: 36px;
}

.about-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-panel li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--po-border);
  color: var(--po-ink-300);
  font-size: 0.95rem;
}

.about-panel li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-panel li svg {
  width: 20px;
  height: 20px;
  color: var(--po-gold-300);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 90px 24px;
  position: relative;
}

.cta-band-inner {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20, 44, 71, 0.45), rgba(10, 22, 38, 0.65));
  border: 1px solid var(--po-border-strong);
  border-radius: var(--po-radius-lg);
  padding: 56px 40px;
  box-shadow: var(--po-shadow-soft);
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
}

.cta-band p {
  color: var(--po-ink-400);
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--po-border);
  padding: 64px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 18, 0.6));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--po-border-strong);
}

.footer-brand span {
  font-family: var(--po-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--po-ink-100);
  letter-spacing: 0.04em;
}

.footer-tagline {
  color: var(--po-ink-500);
  font-size: 0.92rem;
  max-width: 320px;
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: var(--po-font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--po-ink-500);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--po-ink-300);
  font-size: 0.94rem;
}

.footer-bottom {
  border-top: 1px solid var(--po-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--po-ink-500);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--po-ink-500);
}

.footer-bottom a:hover {
  color: var(--po-gold-300);
}

/* ---------- Legal pages ---------- */
.legal-hero {
  padding: 72px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--po-border);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 0.4em;
}

.legal-hero .legal-meta {
  color: var(--po-ink-500);
  font-size: 0.92rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 24px 120px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  background: rgba(20, 44, 71, 0.22);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-md);
  padding: 24px;
}

.legal-toc h2 {
  font-family: var(--po-font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--po-ink-500);
  margin-bottom: 16px;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.1em;
  margin: 0;
  counter-reset: none;
}

.legal-toc li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.legal-toc a {
  color: var(--po-ink-300);
}

.legal-toc a:hover {
  color: var(--po-gold-300);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.2em;
  padding-top: 0.2em;
  scroll-margin-top: 96px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.12rem;
  margin-top: 1.6em;
  color: var(--po-gold-100);
}

.legal-content p,
.legal-content li {
  color: var(--po-ink-300);
  font-size: 0.98rem;
}

.legal-content strong {
  color: var(--po-ink-100);
}

.legal-callout {
  background: rgba(232, 199, 102, 0.07);
  border: 1px solid var(--po-border-strong);
  border-left: 3px solid var(--po-gold-500);
  border-radius: var(--po-radius-sm);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--po-ink-300);
  margin: 1.4em 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 0.92rem;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--po-border);
  color: var(--po-ink-300);
  vertical-align: top;
}

.legal-content th {
  color: var(--po-gold-100);
  background: rgba(232, 199, 102, 0.06);
  font-family: var(--po-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--po-ink-500);
}

/* ---------- Support page ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 20px;
}

.support-card {
  background: linear-gradient(180deg, rgba(20, 44, 71, 0.32), rgba(10, 22, 38, 0.5));
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-md);
  padding: 26px;
}

.support-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--po-gold-300);
  flex-shrink: 0;
}

.support-card p {
  color: var(--po-ink-400);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.support-direct {
  background: rgba(232, 199, 102, 0.06);
  border: 1px solid var(--po-border-strong);
  border-radius: var(--po-radius-md);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.support-direct p {
  margin: 0;
  color: var(--po-ink-300);
  font-size: 0.94rem;
}

.support-direct .email {
  font-family: var(--po-font-display);
  color: var(--po-gold-300);
  font-size: 1.05rem;
}

.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20, 44, 71, 0.35), rgba(10, 22, 38, 0.55));
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--po-ink-100);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group .req {
  color: var(--po-gold-300);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(5, 10, 18, 0.6);
  border: 1px solid var(--po-border-strong);
  border-radius: var(--po-radius-sm);
  padding: 12px 14px;
  color: var(--po-ink-100);
  font-family: var(--po-font-body);
  font-size: 0.95rem;
  transition: border-color var(--po-transition), background var(--po-transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--po-ink-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--po-gold-300);
  background: rgba(5, 10, 18, 0.85);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--po-ink-500);
  margin-top: 20px;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--po-radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(72, 156, 110, 0.12);
  border: 1px solid rgba(72, 156, 110, 0.4);
  color: #a9dcbf;
}

.form-status.error {
  background: rgba(156, 43, 43, 0.14);
  border: 1px solid rgba(156, 43, 43, 0.5);
  color: #e8b3b3;
}

.config-banner {
  max-width: var(--po-max-width);
  margin: 0 auto 0;
  padding: 12px 24px;
  background: rgba(156, 43, 43, 0.16);
  border-bottom: 1px solid rgba(156, 43, 43, 0.4);
  color: #f3caca;
  font-size: 0.86rem;
  text-align: center;
}

.config-banner code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

.cfg-missing {
  color: #e8b3b3;
  font-style: italic;
}

/* ---------- Utility reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .feature-card:hover {
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 13, 24, 0.98);
    border-bottom: 1px solid var(--po-border);
    padding: 12px 24px 20px;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }

  .site-header.is-open .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--po-border);
  }

  .nav-mobile-cta {
    display: none;
    width: 100%;
    border-bottom: none !important;
    padding-top: 16px !important;
  }

  .site-header.is-open .nav-mobile-cta {
    display: block;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 72px 20px 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .support-direct {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-band-inner {
    padding: 40px 24px;
  }

  .form-card {
    padding: 28px 20px;
  }
}
