/*
Theme Name: RoboTaxis
Theme URI: https://www.robotaxis.com.au
Description: Custom theme for RoboTaxis Australia - The Future of Getting Around
Author: RoboTaxis Australia
Version: 1.0.0
Text Domain: robotaxis
*/

/* ========== CSS VARIABLES ========== */
:root {
  --rt-navy: #08326F;
  --rt-navy-dark: #0d2a52;
  --rt-navy-light: #17447D;
  --rt-navy-md: #114D97;
  --rt-border: #1a4a8a;
  --rt-gold: #EFB020;
  --rt-gold-dim: #c9920a;
  --rt-cream: #f0eeea;
  --rt-muted: #c8e6fb;
  --rt-accent: #51A1F5;
  --rt-panel: #0d2a52;
  --rt-cobalt: #2E77CB;
}

/* ========== RESET ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--rt-navy) !important;
  color: var(--rt-cream);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rt-cream);
}

p {
  font-family: 'Barlow', sans-serif;
  color: var(--rt-muted);
  font-weight: 300;
  line-height: 1.7;
}

p strong {
  color: var(--rt-cream);
  font-weight: 500;
}

/* Force no border-radius on all elements */
input, button, .button {
  border-radius: 0 !important;
}

/* ========== NAVIGATION ========== */
.rt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 50, 111, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rt-border);
  height: 71px;
  display: flex;
  align-items: center;
}

.rt-nav-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.rt-nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--rt-cream);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 35px;
  padding: 18px 0;
}

.rt-nav-logo .rt-gold-text {
  color: var(--rt-gold);
}

.rt-nav-right {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.rt-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.rt-nav-menu li {
  height: 100%;
  display: flex;
  align-items: center;
}

.rt-nav-menu li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rt-muted);
  padding: 0 15px;
  line-height: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.rt-nav-menu li a:hover {
  color: var(--rt-gold);
}

/* Active page indicator */
.rt-nav-menu li.current-menu-item:not(.rt-menu-cta) a,
.rt-nav-menu li.current_page_item:not(.rt-menu-cta) a {
  color: var(--rt-gold);
  position: relative;
}

.rt-nav-menu li.current-menu-item:not(.rt-menu-cta) a::after,
.rt-nav-menu li.current_page_item:not(.rt-menu-cta) a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--rt-gold);
}

/* Nav CTA button (via wp_nav_menu with rt-menu-cta class) */
.rt-nav-menu li.rt-menu-cta {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.rt-nav-menu li.rt-menu-cta a {
  background: var(--rt-gold);
  color: var(--rt-navy) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 10px 24px;
  height: auto;
  line-height: 1;
  transition: background 0.2s;
}

.rt-nav-menu li.rt-menu-cta a:hover {
  background: var(--rt-gold-dim);
  color: var(--rt-navy) !important;
}

.rt-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.rt-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rt-cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ========== SECTION TAG / EYEBROW ========== */
.rt-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rt-section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rt-gold);
}

.rt-section-tag span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rt-gold);
}

/* ========== HERO SECTION ========== */
.rt-hero {
  position: relative;
  padding: 100px 48px 160px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(81, 161, 245, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(239, 176, 32, 0.07) 0%, transparent 50%),
    linear-gradient(160deg, #08326F 0%, #0d2a52 50%, #08326F 100%);
}

/* Grid animation */
@keyframes gridScroll {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

.rt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 50, 100, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 50, 100, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

/* Scanning line */
@keyframes scan {
  0%   { top: 20%; opacity: 0; }
  20%  { opacity: 0.4; }
  80%  { opacity: 0.4; }
  100% { top: 80%; opacity: 0; }
}

.rt-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rt-gold), transparent);
  animation: scan 4s ease-in-out infinite;
  opacity: 0.4;
  pointer-events: none;
}

/* Hero 3-column layout */
.rt-hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  gap: 0;
}

.rt-hero-col-text {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rt-hero-col-image {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rt-hero-col-image img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.rt-hero-col-stats {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.rt-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--rt-cream);
}

.rt-hero h1 .rt-gold-text {
  color: var(--rt-gold);
}

.rt-hero p {
  color: var(--rt-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 28px;
}

.rt-hero .rt-section-tag span {
  font-weight: 700;
  color: #efb020;
}

/* Hero button */
.rt-hero-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.rt-hero-btn.primary {
  background: var(--rt-gold);
  color: var(--rt-navy);
  border: none;
}

.rt-hero-btn.primary:hover {
  background: var(--rt-gold-dim);
}

/* Stats column */
.rt-stats-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.rt-stat {
  text-align: right;
  border-right: 2px solid #EFB020;
  padding-right: 20px;
}

.rt-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rt-cream);
  line-height: 1;
}

.rt-stat-label {
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rt-muted);
}

.rt-stat-source {
  display: block;
  font-size: 0.62rem;
  line-height: 1.3;
  color: var(--rt-muted);
  opacity: 0.6;
  margin-top: 4px;
}

/* ========== EMAIL CAPTURE BAR ========== */
.rt-capture {
  background: var(--rt-panel);
  border-top: 1px solid var(--rt-border);
  border-bottom: 1px solid var(--rt-border);
  padding: 48px;
}

.rt-capture-layout {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.rt-capture-text {
  flex: 0 0 50%;
  max-width: 50%;
}

.rt-capture-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--rt-cream);
}

.rt-capture-text p {
  font-size: 0.9rem;
  color: var(--rt-muted);
  margin: 0;
}

.rt-capture-form-wrap {
  flex: 0 0 50%;
  max-width: 50%;
}

.rt-capture-form-wrap .rt-capture-form {
  display: flex;
}

.rt-capture-form-wrap .rt-capture-form input[type="email"] {
  flex: 1;
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  border-right: none;
  padding: 14px 20px;
  color: var(--rt-cream);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  height: 47px;
  box-sizing: border-box;
}

.rt-capture-form-wrap .rt-capture-form input[type="email"]:focus {
  border-color: var(--rt-gold);
}

.rt-capture-form-wrap .rt-capture-form input[type="email"]::placeholder {
  color: var(--rt-muted);
  opacity: 0.5;
}

.rt-capture-form-wrap .rt-capture-form button {
  background: var(--rt-gold);
  color: var(--rt-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--rt-gold);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  height: 47px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rt-capture-form-wrap .rt-capture-form button:hover {
  background: var(--rt-gold-dim);
}

/* ========== EXPLAINER SECTION ========== */
.rt-explainer {
  background: var(--rt-navy-light);
  padding: 96px 48px;
  overflow: hidden;
}

.rt-explainer-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.rt-explainer-text {
  flex: 1;
  min-width: 0;
}

.rt-explainer-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
  margin-bottom: 20px;
}

.rt-explainer-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--rt-muted);
  margin-bottom: 16px;
}

.rt-explainer-panel {
  flex: 1;
  min-width: 0;
}

.rt-visual-panel {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.rt-visual-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rt-gold), transparent);
}

.rt-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.rt-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(239, 176, 32, 0.12);
  border: 1px solid rgba(239, 176, 32, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.rt-feature-row h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--rt-cream);
}

.rt-feature-row p {
  font-size: 0.85rem;
  color: var(--rt-muted);
  line-height: 1.5;
  margin: 0;
}

/* ========== WHY AUSTRALIA SECTION ========== */
.rt-why-section {
  background: var(--rt-navy);
  padding: 96px 48px;
}

.rt-why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.rt-why-title {
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: #f0eeea;
}

.rt-why-grid {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}

.rt-why-card {
  flex: 1 1 0;
}

.rt-why-card-inner {
  background: var(--rt-panel);
  padding: 40px 32px;
  height: 100%;
  border: 1px solid var(--rt-border);
  margin-left: -1px;
  transition: background 0.2s;
}

.rt-why-card:first-child .rt-why-card-inner {
  margin-left: 0;
}

.rt-why-card-inner:hover {
  background: #0f3060;
}

.rt-why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #efb020;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.rt-why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--rt-cream);
}

.rt-why-card p {
  font-size: 0.88rem;
  color: var(--rt-muted);
  line-height: 1.65;
  margin: 0;
}

/* ========== NEWS SECTION ========== */
.rt-news-section {
  background: #1A4A8A;
  padding: 96px 48px 96px;
}

.rt-news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.rt-news-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
}

.rt-news-all-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #efb020;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rt-news-all-link:hover {
  color: var(--rt-cream);
}

.rt-news-grid {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}

.rt-news-featured {
  flex: 0 0 50%;
}

.rt-news-side {
  flex: 0 0 25%;
}

.rt-news-card {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  cursor: pointer;
  height: 100%;
  transition: background 0.2s;
}

.rt-news-card:hover {
  background: #0f3060;
}

.rt-news-img {
  position: relative;
  overflow: hidden;
}

.rt-news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.rt-news-img-featured {
  height: 220px;
  background: linear-gradient(135deg, #08326F 0%, #114D97 50%, #0d2a52 100%);
}

.rt-news-img-small-aus {
  height: 140px;
  background: linear-gradient(135deg, #17447D 0%, #2E77CB 100%);
}

.rt-news-img-small-tech {
  height: 140px;
  background: linear-gradient(135deg, #114D97 0%, #2E77CB 100%);
}

.rt-news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rt-navy);
  background: var(--rt-gold);
  padding: 4px 10px;
}

.rt-news-body {
  padding: 24px;
}

.rt-news-meta {
  font-size: 0.85rem;
  color: var(--rt-muted);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.rt-news-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--rt-cream);
}

.rt-news-featured h3 {
  font-size: 1.4rem;
}

.rt-news-side h3 {
  font-size: 1.1rem;
}

.rt-news-card p {
  font-size: 0.85rem;
  color: var(--rt-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.rt-read-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rt-gold);
  transition: color 0.2s;
}

.rt-read-more:hover {
  color: var(--rt-cream);
}

/* ========== SUBSCRIBE CTA ========== */
.rt-subscribe {
  background: var(--rt-panel);
  border-top: 1px solid var(--rt-border);
  text-align: center;
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

.rt-subscribe-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.rt-subscribe .rt-section-tag {
  justify-content: center;
}

.rt-subscribe h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
  margin-bottom: 20px;
}

.rt-subscribe h2 .rt-gold-text {
  color: #efb020;
}

.rt-subscribe p {
  font-size: 1rem;
  color: var(--rt-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-bottom: 24px;
}

.rt-subscribe-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 16px;
}

.rt-subscribe-form input[type="email"] {
  flex: 1;
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  border-right: none;
  padding: 14px 20px;
  color: var(--rt-cream);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  height: 51px;
  box-sizing: border-box;
}

.rt-subscribe-form input[type="email"]:focus {
  border-color: var(--rt-gold);
}

.rt-subscribe-form input[type="email"]::placeholder {
  color: var(--rt-muted);
  opacity: 0.5;
}

.rt-subscribe-form button {
  background: var(--rt-gold);
  color: var(--rt-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--rt-gold);
  cursor: pointer;
  transition: background 0.2s;
  height: 51px;
  box-sizing: border-box;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rt-subscribe-form button:hover {
  background: var(--rt-gold-dim);
}

.rt-fine-print {
  font-size: 0.78rem;
  color: var(--rt-muted);
}

/* ========== FOOTER ========== */
.rt-footer {
  background: var(--rt-navy);
  padding: 0;
}

.rt-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  margin: 10px 20px;
  padding: 0 48px;
}

.rt-footer-brand {
  flex: 0 0 16.666%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rt-cream);
}

.rt-footer-brand .rt-gold-text {
  color: #efb020;
}

.rt-footer-nav {
  flex: 0 0 66.666%;
  display: flex;
  justify-content: center;
}

.rt-footer-nav ul,
.rt-footer-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.rt-footer-nav a,
.rt-footer-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rt-muted);
  padding: 8px 12px;
  transition: color 0.2s;
}

.rt-footer-nav a:hover,
.rt-footer-menu a:hover {
  color: var(--rt-gold);
}

.rt-footer-menu li {
  list-style: none;
}

.rt-footer-copy {
  flex: 0 0 16.666%;
  text-align: right;
}

.rt-footer-copy p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: var(--rt-muted);
  margin: 0;
}

/* Disclaimer row */
.rt-footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 20px;
}

.rt-footer-disclaimer p {
  font-size: 0.72rem;
  color: var(--rt-muted);
  opacity: 0.6;
  line-height: 1.7;
}

.rt-footer-disclaimer p strong {
  color: var(--rt-muted);
  font-weight: 600;
}

/* ========== FLOATING COPYRIGHT BAR (fixed to viewport bottom) ========== */
.rt-floating-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--rt-navy);
  border-top: 1px solid var(--rt-border);
}

.rt-floating-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 48px;
  min-height: 33px;
}

.rt-floating-copyright {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rt-muted);
  opacity: 0.6;
}

.rt-back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--rt-panel);
  color: var(--rt-gold);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.rt-back-to-top:hover {
  background: #0f3060;
  color: var(--rt-gold);
}

/* Add bottom padding to body so content doesn't hide behind floating footer */
body {
  padding-bottom: 57px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .rt-nav-inner {
    padding: 0 24px;
  }

  .rt-nav-menu {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: rgba(8, 50, 111, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--rt-border);
    height: auto;
  }

  .rt-nav-menu.active {
    display: flex;
  }

  .rt-nav-menu li {
    height: auto;
  }

  .rt-nav-menu li a {
    height: auto;
    line-height: 2;
    padding: 8px 0;
  }

  .rt-nav-cta-wrap {
    display: none;
  }

  .rt-hamburger {
    display: flex;
  }

  /* Hero mobile */
  .rt-hero {
    padding: 100px 24px 160px;
  }

  .rt-hero-layout {
    flex-direction: column;
    gap: 40px;
  }

  .rt-hero-col-text,
  .rt-hero-col-image,
  .rt-hero-col-stats {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .rt-hero-col-stats {
    align-items: flex-start;
  }

  .rt-stats-col {
    align-items: flex-start;
  }

  .rt-stat {
    text-align: left;
    border-right: none;
    border-left: 2px solid #EFB020;
    padding-right: 0;
    padding-left: 20px;
  }

  /* Capture mobile */
  .rt-capture {
    padding: 40px 24px;
  }

  .rt-capture-layout {
    flex-direction: column;
    gap: 24px;
  }

  .rt-capture-text,
  .rt-capture-form-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .rt-capture-form-wrap .rt-capture-form {
    flex-direction: column;
  }

  .rt-capture-form-wrap .rt-capture-form input[type="email"] {
    border-right: 1px solid var(--rt-border);
    border-bottom: none;
  }

  /* Explainer mobile */
  .rt-explainer {
    padding: 64px 24px;
  }

  .rt-explainer-layout {
    flex-direction: column;
    gap: 40px;
  }

  .rt-explainer-text,
  .rt-explainer-panel {
    flex: 0 0 100%;
  }

  /* Why mobile */
  .rt-why-section {
    padding: 64px 24px;
  }

  .rt-why-header,
  .rt-why-grid {
    max-width: 100%;
    width: 100%;
  }

  .rt-why-grid {
    flex-direction: column;
  }

  .rt-why-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* News mobile */
  .rt-news-section {
    padding: 64px 24px;
  }

  .rt-news-header,
  .rt-news-grid {
    max-width: 100%;
    width: 100%;
  }

  .rt-news-grid {
    flex-direction: column;
  }

  .rt-news-featured,
  .rt-news-side {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Subscribe mobile */
  .rt-subscribe {
    padding: 64px 24px;
  }

  .rt-subscribe-form {
    flex-direction: column;
  }

  .rt-subscribe-form input[type="email"] {
    border-right: 1px solid var(--rt-border);
    border-bottom: none;
  }

  /* Footer mobile */
  .rt-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
  }

  .rt-footer-brand,
  .rt-footer-nav,
  .rt-footer-copy {
    flex: 0 0 100%;
  }

  .rt-footer-copy {
    text-align: left;
  }

  .rt-footer-nav ul {
    flex-wrap: wrap;
  }

  .rt-footer-disclaimer {
    padding-left: 44px;
    padding-right: 44px;
  }

  .rt-floating-footer-inner {
    padding: 12px 24px;
  }

  .rt-footer-disclaimer {
    border-top: 1px solid var(--rt-border);
    padding-top: 20px;
  }
}

@media (min-width: 901px) {
  .rt-footer-disclaimer {
    border-top: none;
    padding-top: 0;
  }
}

@media (min-width: 901px) and (max-width: 1399px) {
  .rt-footer-row {
    padding: 0 24px;
  }

  .rt-footer-brand {
    flex: 1 1 auto;
  }

  .rt-footer-nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: flex-start;
    padding: 4px 0;
  }

  .rt-footer-copy {
    flex: 0 0 auto;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.rt-cookie-banner {
  position: fixed;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
}

.rt-cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--rt-navy-dark);
  border: 1px solid var(--rt-border);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.rt-cookie-text p {
  font-size: 0.82rem;
  color: var(--rt-muted);
  line-height: 1.6;
  margin: 0;
}

.rt-cookie-text a {
  color: var(--rt-gold);
}

.rt-cookie-text a:hover {
  text-decoration: underline;
}

.rt-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.rt-cookie-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.rt-cookie-accept {
  background: var(--rt-gold);
  color: var(--rt-navy);
}

.rt-cookie-accept:hover {
  background: #f5c23a;
}

.rt-cookie-decline {
  background: transparent;
  color: var(--rt-muted);
  border: 1px solid var(--rt-border);
}

.rt-cookie-decline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--rt-cream);
}

.rt-cookie-manage {
  background: transparent;
  color: var(--rt-gold);
  border: 1px solid var(--rt-gold);
}

.rt-cookie-manage:hover {
  background: rgba(239, 176, 32, 0.1);
}

.rt-cookie-inner--granular {
  flex-direction: column;
  max-width: 560px;
}

.rt-cookie-inner--granular .rt-cookie-text {
  text-align: center;
}

.rt-cookie-inner--granular .rt-cookie-actions {
  justify-content: center;
}

/* Preferences panel */
.rt-cookie-prefs {
  width: 100%;
  border-top: 1px solid var(--rt-border);
  margin-top: 16px;
  padding-top: 16px;
}

.rt-cookie-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rt-cookie-pref-row:last-of-type {
  border-bottom: none;
}

.rt-cookie-pref-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.rt-cookie-pref-info strong {
  color: var(--rt-cream);
  font-size: 0.88rem;
  font-weight: 600;
}

.rt-cookie-pref-info span {
  color: var(--rt-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Toggle switch */
.rt-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
}

.rt-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.rt-cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 24px;
  transition: background 0.25s;
}

.rt-cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--rt-cream);
  border-radius: 50%;
  transition: transform 0.25s;
}

.rt-cookie-toggle input:checked + .rt-cookie-slider {
  background: var(--rt-gold);
}

.rt-cookie-toggle input:checked + .rt-cookie-slider::before {
  transform: translateX(20px);
  background: var(--rt-navy);
}

.rt-cookie-slider--locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.rt-cookie-pref-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .rt-cookie-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .rt-cookie-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================================================
   ABOUT US PAGE
   ========================================================== */

/* ========== ABOUT HERO ========== */
.rt-about-hero {
  width: 100%;
  padding-top: 71px;
  background: var(--rt-navy);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.rt-about-hero-inner {
  width: 100%;
  margin: 0 auto;
  padding: 90px 48px 80px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

.rt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rt-gold);
}

.rt-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rt-gold);
}

.rt-page-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--rt-cream);
}

.rt-page-h1 em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-page-sub {
  color: var(--rt-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.rt-hero-cta {
  display: inline-block;
  background: var(--rt-gold);
  color: var(--rt-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.2s;
}

.rt-hero-cta:hover {
  background: #ffd54f;
}

.rt-about-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
}

.rt-stat {
  text-align: right;
  border-right: 2px solid var(--rt-gold);
  padding-right: 20px;
}

.rt-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rt-cream);
  line-height: 1;
  display: block;
}

.rt-stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rt-muted);
  display: block;
  margin-top: 2px;
}

/* ========== ABOUT MISSION ========== */
.rt-about-mission {
  width: 100%;
  background: var(--rt-panel);
  padding: 90px 0;
}

.rt-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.rt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.rt-sec-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
  margin-bottom: 24px;
}

.rt-sec-h2 em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-mission-text {
  color: var(--rt-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.rt-mission-text strong {
  color: var(--rt-cream);
}

.rt-about-feature-box {
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  padding: 40px;
}

.rt-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.rt-about-feature-item:last-child {
  margin-bottom: 0;
}

.rt-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(239, 176, 32, .12);
  border: 1px solid rgba(239, 176, 32, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.rt-about-feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--rt-cream);
}

.rt-about-feature-desc {
  font-size: .85rem;
  color: var(--rt-muted);
  line-height: 1.5;
}

/* ========== ABOUT FOCUS AREAS ========== */
.rt-about-focus {
  width: 100%;
  background: var(--rt-navy);
  padding: 90px 0;
}

.rt-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rt-focus-card {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  padding: 32px 24px;
}

.rt-focus-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--rt-gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
}

.rt-focus-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--rt-cream);
}

.rt-focus-desc {
  font-size: .88rem;
  color: var(--rt-muted);
  line-height: 1.65;
}

/* ========== ABOUT EDITORIAL ========== */
.rt-about-editorial {
  width: 100%;
  background: var(--rt-navy-light);
  padding: 90px 0;
}

.rt-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.rt-email-box {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  padding: 48px 40px;
  text-align: center;
}

.rt-email-box-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
  margin-bottom: 8px;
}

.rt-email-box-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-gold);
  margin-bottom: 24px;
}

.rt-email-box-sub {
  font-size: .95rem;
  color: var(--rt-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.rt-email-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto 16px;
}

.rt-email-form input[type="email"] {
  flex: 1;
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  border-right: none;
  padding: 14px 16px;
  color: var(--rt-cream);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  outline: none;
}

.rt-email-form input[type="email"]::placeholder {
  color: rgba(200, 230, 251, .4);
}

.rt-email-form input[type="email"]:focus {
  border-color: var(--rt-gold);
}

.rt-email-form button {
  background: var(--rt-gold);
  color: var(--rt-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.rt-email-form button:hover {
  background: #ffd54f;
}

.rt-email-note {
  font-size: .78rem;
  color: var(--rt-muted);
  opacity: .6;
}

/* ========== ABOUT PAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .rt-about-hero-inner {
    grid-template-columns: 1fr;
  }

  .rt-about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
  }

  .rt-two-col,
  .rt-editorial-grid {
    grid-template-columns: 1fr;
  }

  .rt-focus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .rt-about-hero-inner,
  .rt-section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rt-focus-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   AUSTRALIA UPDATE PAGE
   ========================================================== */

/* ========== AU HERO ========== */
.rt-au-hero {
  width: 100%;
  padding-top: 71px;
  background: var(--rt-navy);
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
}

.rt-au-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(239,176,32,.05) 0%, transparent 60%);
}

.rt-au-hero-inner {
  width: 100%;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ========== READINESS CARD ========== */
.rt-au-readiness {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  padding: 32px;
}

.rt-readiness-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin-bottom: 16px;
  display: block;
}

.rt-readiness-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--rt-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.rt-readiness-desc {
  font-size: .82rem;
  color: var(--rt-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.rt-readiness-bar-wrap {
  background: rgba(200,230,251,.1);
  height: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}

.rt-readiness-bar {
  height: 100%;
  background: var(--rt-gold);
}

.rt-readiness-bar-lbl {
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rt-muted);
  opacity: .6;
}

.rt-readiness-method {
  font-size: 0.72rem;
  color: var(--rt-muted);
  opacity: 0.7;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.5;
}

.rt-op-asof {
  font-size: 0.78rem;
  color: var(--rt-muted);
  font-style: italic;
}

/* ========== STATUS GRID ========== */
.rt-au-status {
  width: 100%;
  background: var(--rt-panel);
  padding: 80px 0;
}

.rt-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rt-border);
  margin-top: 48px;
}

.rt-status-card {
  background: var(--rt-navy);
  padding: 28px 24px;
}

.rt-status-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.rt-status-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rt-cream);
  margin-bottom: 8px;
}

.rt-status-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.rt-status-val em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-status-desc {
  font-size: .8rem;
  color: var(--rt-muted);
  line-height: 1.5;
}

/* ========== REGULATORY ========== */
.rt-regulatory {
  width: 100%;
  background: var(--rt-navy);
  padding: 80px 0;
}

.rt-body-text {
  color: var(--rt-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.rt-body-text strong {
  color: var(--rt-cream);
  font-weight: 500;
}

.rt-reg-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rt-reg-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
}

.rt-reg-row.header {
  background: transparent;
  border: none;
}

.rt-reg-cell {
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--rt-muted);
}

.rt-reg-row.header .rt-reg-cell {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rt-gold);
  padding-bottom: 8px;
}

.rt-reg-row:not(.header) .rt-reg-cell:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rt-cream);
  border-right: 1px solid var(--rt-border);
}

/* ========== CITIES ========== */
.rt-cities {
  width: 100%;
  background: var(--rt-panel);
  padding: 80px 0;
}

.rt-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rt-border);
  margin-top: 48px;
}

.rt-city-card {
  background: var(--rt-navy);
  padding: 36px 28px;
}

.rt-city-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
  margin-bottom: 6px;
}

.rt-city-state {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin-bottom: 16px;
  display: block;
}

.rt-city-likelihood {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
  border: 1px solid;
}

.rt-city-likelihood.high {
  color: #4cdb8a;
  border-color: rgba(76,219,138,.3);
  background: rgba(76,219,138,.07);
}

.rt-city-likelihood.medium {
  color: var(--rt-gold);
  border-color: rgba(239,176,32,.3);
  background: rgba(239,176,32,.07);
}

.rt-city-likelihood.lower {
  color: var(--rt-muted);
  border-color: rgba(200,230,251,.2);
  background: rgba(200,230,251,.04);
}

.rt-city-desc {
  font-size: .88rem;
  color: var(--rt-muted);
  line-height: 1.65;
}

/* ========== TIMELINE ========== */
.rt-timeline {
  width: 100%;
  background: var(--rt-navy);
  padding: 80px 0;
}

.rt-timeline-list {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  border: 1px solid var(--rt-border);
}

.rt-tl-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--rt-panel);
  border-bottom: 1px solid var(--rt-border);
}

.rt-tl-item:last-child {
  border-bottom: none;
}

.rt-tl-item.past {
  opacity: .6;
}

.rt-tl-year {
  padding: 28px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--rt-gold);
  border-right: 1px solid var(--rt-border);
  display: flex;
  align-items: center;
}

.rt-tl-item.past .rt-tl-year {
  color: var(--rt-muted);
}

.rt-tl-content {
  padding: 28px 32px;
}

.rt-tl-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rt-cream);
  margin-bottom: 8px;
}

.rt-tl-desc {
  font-size: .88rem;
  color: var(--rt-muted);
  line-height: 1.6;
}

/* ========== NOTIFY ========== */
.rt-au-notify {
  width: 100%;
  background: var(--rt-navy-light);
  padding: 80px 0;
}

.rt-notify-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rt-notify-badge {
  display: inline-block;
  background: rgba(239,176,32,.12);
  border: 1px solid rgba(239,176,32,.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rt-gold);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.rt-notify-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .95;
  color: var(--rt-cream);
  margin-bottom: 20px;
}

.rt-notify-h em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-notify-sub {
  color: var(--rt-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.rt-au-notify .rt-capture-form,
.rt-about-editorial .rt-email-form {
  box-sizing: border-box;
}

.rt-au-notify .rt-capture-form {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  padding: 40px;
  display: block;
}

.rt-au-notify .rt-capture-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rt-cream);
  margin: 0 0 8px 0;
}

.rt-au-notify .rt-capture-form p {
  font-size: .88rem;
  color: var(--rt-muted);
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.rt-au-notify .rt-capture-row {
  display: flex;
  margin-bottom: 16px;
}

.rt-au-notify .rt-capture-row input[type="email"] {
  flex: 1;
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  border-right: none;
  padding: 14px 16px;
  color: var(--rt-cream);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  outline: none;
  height: auto;
  box-sizing: border-box;
}

.rt-au-notify .rt-capture-row input[type="email"]::placeholder {
  color: rgba(200,230,251,.35);
}

.rt-au-notify .rt-capture-row input[type="email"]:focus {
  border-color: var(--rt-gold);
}

.rt-au-notify .rt-capture-row button {
  background: var(--rt-gold);
  color: var(--rt-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  box-sizing: border-box;
}

.rt-au-notify .rt-capture-row button:hover {
  background: #ffd54f;
}

.rt-au-notify .rt-capture-note {
  font-size: .75rem;
  color: rgba(200,230,251,.4);
  margin-top: 20px;
  margin-bottom: 0;
}

/* ========== AUSTRALIA UPDATE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .rt-au-hero-inner,
  .rt-notify-inner {
    grid-template-columns: 1fr;
  }

  .rt-status-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rt-cities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .rt-au-hero-inner,
  .rt-notify-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rt-status-grid,
  .rt-cities-grid {
    grid-template-columns: 1fr;
  }

  .rt-tl-item {
    grid-template-columns: 100px 1fr;
  }

  .rt-tl-year {
    font-size: 1.4rem;
    padding: 20px;
  }

  .rt-tl-content {
    padding: 20px;
  }
}

/* ==========================================================
   GLOBAL OPERATORS PAGE
   ========================================================== */

/* ========== OPS HERO ========== */
.rt-ops-hero {
  width: 100%;
  padding-top: 71px;
  background: var(--rt-navy);
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
}

.rt-ops-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(239,176,32,.05) 0%, transparent 60%);
}

.rt-ops-hero-inner {
  width: 100%;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ========== HERO STATS ========== */
.rt-hero-stats {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rt-border);
}

.rt-hstat {
  padding: 22px 28px;
  border-bottom: 1px solid var(--rt-border);
  background: var(--rt-panel);
}

.rt-hstat:last-child {
  border-bottom: none;
}

.rt-hstat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rt-cream);
  line-height: 1;
  display: block;
}

.rt-hstat-val em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-hstat-lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rt-muted);
  display: block;
  margin-top: 4px;
}

/* ========== FILTER BAR ========== */
.rt-ops-filter {
  width: 100%;
  background: var(--rt-panel);
  border-bottom: 1px solid var(--rt-border);
  padding: 20px 0;
}

.rt-filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rt-filter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin-right: 8px;
}

.rt-filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rt-muted);
  border: 1px solid var(--rt-border);
  padding: 8px 18px;
  cursor: pointer;
  background: transparent;
  transition: all .2s;
}

.rt-filter-btn:hover,
.rt-filter-btn.active {
  background: var(--rt-gold);
  color: var(--rt-navy);
  border-color: var(--rt-gold);
}

/* ========== OPERATORS GRID ========== */
.rt-ops-grid {
  width: 100%;
  background: var(--rt-navy);
  padding: 70px 0;
}

.rt-ops-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rt-border);
}

.rt-op-card {
  background: var(--rt-navy);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: background .2s;
  cursor: default;
}

.rt-op-card:hover {
  background: rgba(13,42,82,.6);
}

.rt-op-card[data-status].hidden {
  display: none;
}

.rt-op-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rt-op-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rt-cream);
  line-height: 1;
  margin-top: 0;
  margin-bottom: 4px;
}

.rt-op-hq {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rt-muted);
}

/* ========== STATUS BADGES ========== */
.rt-op-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid;
  flex-shrink: 0;
}

.rt-op-status.live {
  color: #4cdb8a;
  border-color: rgba(76,219,138,.3);
  background: rgba(76,219,138,.07);
}

.rt-op-status.testing {
  color: var(--rt-gold);
  border-color: rgba(239,176,32,.3);
  background: rgba(239,176,32,.07);
}

.rt-op-status.paused {
  color: #ff8080;
  border-color: rgba(255,128,128,.3);
  background: rgba(255,128,128,.07);
}

.rt-op-status.planned {
  color: var(--rt-muted);
  border-color: rgba(200,230,251,.2);
  background: rgba(200,230,251,.04);
}

/* ========== CARD CONTENT ========== */
.rt-op-desc {
  font-size: .88rem;
  color: var(--rt-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.rt-op-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--rt-border);
  padding-top: 20px;
}

.rt-op-meta-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rt-cream);
  display: block;
  line-height: 1;
}

.rt-op-meta-val em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-op-meta-lbl {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rt-muted);
  display: block;
  margin-top: 3px;
}

/* ========== AUSTRALIA RELEVANCE ========== */
.rt-au-relevance {
  width: 100%;
  background: var(--rt-panel);
  padding: 80px 0;
}

.rt-relevance-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rt-rel-item {
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  padding: 20px 24px;
}

.rt-rel-text {
  font-size: .9rem;
  color: var(--rt-muted);
  line-height: 1.6;
}

.rt-rel-text strong {
  color: var(--rt-cream);
  font-weight: 500;
}

/* ========== CTA ========== */
.rt-ops-cta {
  width: 100%;
  background: var(--rt-navy-light);
  padding: 80px 0;
}

.rt-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rt-cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rt-cream);
  line-height: 1;
  margin-bottom: 10px;
}

.rt-cta-text h2 em {
  font-style: normal;
  color: var(--rt-gold);
}

.rt-cta-text p {
  color: var(--rt-muted);
  font-size: .95rem;
}

.rt-btn-primary {
  background: var(--rt-gold);
  color: var(--rt-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 36px;
  display: inline-block;
  transition: background .2s;
  white-space: nowrap;
}

.rt-btn-primary:hover {
  background: #ffd54f;
  color: var(--rt-navy);
}

/* ========== GLOBAL OPERATORS RESPONSIVE ========== */
@media (max-width: 1024px) {
  .rt-ops-hero-inner {
    grid-template-columns: 1fr;
  }

  .rt-ops-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .rt-ops-hero-inner,
  .rt-filter-inner,
  .rt-cta-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rt-ops-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   PRIVACY POLICY PAGE
   ========================================================== */

/* ========== PRIVACY HERO ========== */
.rt-privacy-hero {
  width: 100%;
  padding-top: 71px;
  background: var(--rt-navy);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.rt-privacy-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 48px 80px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* ========== PRIVACY SECTIONS ========== */
.rt-privacy-section {
  width: 100%;
  background: var(--rt-navy);
  padding: 80px 0;
}

.rt-privacy-section.rt-privacy-alt {
  background: var(--rt-panel);
}

/* ========== PRIVACY H3 ========== */
.rt-privacy-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rt-gold);
  margin-top: 32px;
  margin-bottom: 16px;
}

/* ========== PRIVACY LIST ========== */
.rt-privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.rt-privacy-list li {
  position: relative;
  padding-left: 24px;
  font-size: .95rem;
  color: var(--rt-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.rt-privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--rt-gold);
}

.rt-privacy-list li strong {
  color: var(--rt-cream);
  font-weight: 500;
}

/* ========== PRIVACY TABLE ========== */
.rt-privacy-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
}

.rt-privacy-table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
}

.rt-privacy-alt .rt-privacy-table-row {
  background: var(--rt-navy);
}

.rt-privacy-table-row.header {
  background: transparent;
  border: none;
}

.rt-privacy-table-cell {
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--rt-muted);
  line-height: 1.6;
}

.rt-privacy-table-cell strong {
  color: var(--rt-cream);
  font-weight: 600;
}

/* ========== PRIVACY CONTACT ========== */
.rt-privacy-contact {
  background: var(--rt-navy) !important;
  border-top: 1px solid var(--rt-border);
}

.rt-privacy-contact-box {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rt-privacy-contact-item {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  padding: 28px 24px;
}

.rt-privacy-contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rt-gold);
  margin-bottom: 8px;
}

.rt-privacy-contact-value {
  font-size: .95rem;
  color: var(--rt-cream);
  line-height: 1.6;
}

.rt-privacy-contact-value a {
  color: var(--rt-gold);
  transition: color 0.2s;
}

.rt-privacy-contact-value a:hover {
  color: #ffd54f;
}

/* ========== PRIVACY PAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .rt-privacy-hero-inner {
    grid-template-columns: 1fr;
  }

  .rt-privacy-contact-box {
    grid-template-columns: 1fr 1fr;
  }

  .rt-privacy-table-row {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 768px) {
  .rt-privacy-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rt-privacy-contact-box {
    grid-template-columns: 1fr;
  }

  .rt-privacy-table-row {
    grid-template-columns: 1fr;
  }

  .rt-privacy-table-row.header {
    display: none;
  }
}

/* ========== NEWS ARCHIVE (home.php) ========== */
.rt-archive-hero {
  background: var(--rt-navy);
  padding: 140px 48px 64px;
  text-align: center;
  border-bottom: 1px solid var(--rt-border);
}

.rt-archive-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.rt-archive-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--rt-cream);
  margin-bottom: 16px;
}

.rt-archive-hero p {
  font-size: 1.05rem;
  color: var(--rt-muted);
  max-width: 520px;
  margin: 0 auto;
}

.rt-archive-section {
  background: var(--rt-navy);
  padding: 64px 48px 96px;
}

.rt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.rt-archive-card {
  display: flex;
}

.rt-archive-card .rt-news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
}

.rt-archive-card .rt-news-img {
  height: 180px;
}

.rt-archive-pagination {
  text-align: center;
  margin-top: 48px;
}

.rt-archive-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rt-muted);
  border: 1px solid var(--rt-border);
  background: var(--rt-panel);
  transition: all 0.2s;
}

.rt-archive-pagination .page-numbers.current,
.rt-archive-pagination .page-numbers:hover {
  background: var(--rt-gold);
  color: var(--rt-navy);
  border-color: var(--rt-gold);
}

/* ========== SINGLE ARTICLE (single.php) ========== */
.rt-single-article {
  background: var(--rt-navy);
}

.rt-article-header {
  padding: 140px 48px 48px;
  border-bottom: 1px solid var(--rt-border);
  background: var(--rt-panel);
}

.rt-article-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.rt-article-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--rt-cream);
  margin-bottom: 16px;
}

.rt-article-meta {
  font-size: 0.9rem;
  color: var(--rt-muted);
  letter-spacing: 0.08em;
}

.rt-article-hero-img {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 48px 0;
}

.rt-article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.rt-article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 48px 64px;
}

.rt-article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--rt-cream);
}

.rt-article-content p {
  margin-bottom: 1.5em;
}

.rt-article-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rt-cream);
  margin: 2em 0 0.8em;
}

.rt-article-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rt-cream);
  margin: 1.5em 0 0.6em;
}

.rt-article-content a {
  color: var(--rt-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rt-article-content a:hover {
  color: var(--rt-cream);
}

.rt-article-content ul,
.rt-article-content ol {
  margin: 0 0 1.5em 1.5em;
  color: var(--rt-muted);
}

.rt-article-content li {
  margin-bottom: 0.5em;
}

.rt-article-content blockquote {
  border-left: 3px solid var(--rt-gold);
  margin: 1.5em 0;
  padding: 16px 24px;
  background: var(--rt-panel);
  color: var(--rt-muted);
  font-style: italic;
}

.rt-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 48px;
  border-top: 1px solid var(--rt-border);
}

.rt-article-cats {
  display: flex;
  gap: 8px;
}

.rt-article-cat-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rt-navy);
  background: var(--rt-gold);
  padding: 4px 12px;
  text-decoration: none !important;
}

.rt-article-cat-link:hover {
  background: var(--rt-cream);
}

/* Archive & single mobile */
@media (max-width: 768px) {
  .rt-archive-hero {
    padding: 120px 24px 48px;
  }

  .rt-archive-section {
    padding: 32px 24px 64px;
  }

  .rt-archive-grid {
    grid-template-columns: 1fr;
  }

  .rt-article-header {
    padding: 120px 24px 32px;
  }

  .rt-article-body {
    padding: 32px 24px 48px;
  }

  .rt-article-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ========== GET NOTIFIED POPUP MODAL ========== */
.rt-notify-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(6, 16, 31, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rt-notify-overlay.open {
  display: flex;
}
.rt-notify-modal {
  background: linear-gradient(135deg, #06101f 0%, #0d1e3a 50%, #0a1628 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 40px 40px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(239,176,32,0.08);
  animation: rtNotifyFadeUp 0.4s ease both;
}
@keyframes rtNotifyFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.rt-notify-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.rt-notify-close:hover {
  color: #fff;
}
.rt-notify-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rt-notify-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.rt-notify-tab.active {
  color: var(--rt-gold);
  border-bottom-color: var(--rt-gold);
}
.rt-notify-tab:hover {
  color: rgba(255,255,255,0.7);
}
.rt-notify-panel {
  display: none;
}
.rt-notify-panel.active {
  display: block;
}
.rt-notify-badge {
  display: inline-block;
  border: 1px solid rgba(239,176,32,0.5);
  color: var(--rt-gold);
  font-size: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.rt-notify-icon {
  margin-bottom: 16px;
}
.rt-notify-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.rt-notify-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.rt-notify-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.rt-notify-form {
  width: 100%;
  margin-bottom: 10px;
}
.rt-notify-input-row {
  display: flex;
  gap: 8px;
}
.rt-notify-input-row input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  transition: border-color 0.2s;
  min-width: 0;
  font-family: 'Barlow', sans-serif;
}
.rt-notify-input-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
}
.rt-notify-input-row input[type="email"]:focus {
  outline: none;
  border-color: var(--rt-gold);
}
.rt-notify-input-row button {
  background: var(--rt-gold);
  color: #0a1628;
  border: none;
  border-radius: 6px;
  padding: 13px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
.rt-notify-input-row button:hover {
  background: #ffd54f;
}
.rt-notify-input-row button:disabled {
  cursor: default;
  opacity: 0.7;
}
.rt-notify-input-row button.success {
  background: #4caf50;
  color: #fff;
}
.rt-notify-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10,22,40,0.3);
  border-top: 2px solid #0a1628;
  border-radius: 50%;
  animation: rtNotifySpin 0.7s linear infinite;
  display: inline-block;
}
@keyframes rtNotifySpin {
  to { transform: rotate(360deg); }
}
.rt-notify-feedback {
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.4;
  display: none;
}
.rt-notify-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-top: 10px;
}
.rt-notify-fine a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
}
.rt-notify-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0 20px;
}
.rt-notify-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.rt-notify-brand-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
}
.rt-notify-brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .rt-notify-modal {
    padding: 32px 24px 28px;
    margin: 16px;
  }
  .rt-notify-heading {
    font-size: 34px;
  }
  .rt-notify-input-row {
    flex-direction: column;
  }
  .rt-notify-input-row button {
    width: 100%;
  }
}

/* ==========================================================
   ANTI-BOT CAPTCHA FIELDS
   ========================================================== */
.rt-hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.rt-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.rt-captcha-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rt-muted);
  white-space: nowrap;
}

.rt-captcha-input {
  width: 3.5em;
  max-width: 3.5em;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 6px;
  font-size: 14px;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  text-align: center;
  border-radius: 6px;
  -moz-appearance: textfield;
}

.rt-captcha-input::-webkit-outer-spin-button,
.rt-captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.rt-captcha-input:focus {
  outline: none;
  border-color: var(--rt-gold);
}

/* Captcha below input row — full width on its own line */
.rt-captcha-below {
  width: 100%;
  flex-basis: 100%;
  margin-top: 8px;
}

/* Ensure parent forms allow wrapping so captcha drops below */
.rt-capture-form,
.rt-subscribe-form,
.rt-email-form {
  flex-wrap: wrap;
}

/* Captcha inside notify popup (inherits base styles) */

/* ==========================================================
   CONTACT US PAGE
   ========================================================== */

/* ========== CONTACT HERO ========== */
.rt-contact-hero {
  width: 100%;
  padding-top: 71px;
  background: var(--rt-navy);
  border-bottom: 1px solid var(--rt-border);
}

.rt-contact-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 48px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  width: 100%;
}

.rt-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.rt-contact-info-card {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.rt-contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rt-contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rt-gold);
  display: block;
}

.rt-contact-info-value {
  font-size: .92rem;
  color: var(--rt-cream);
}

/* ========== CONTACT FORM SECTION ========== */
.rt-contact-form-section {
  width: 100%;
  background: var(--rt-panel);
  padding: 80px 0;
}

.rt-contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.rt-contact-form-wrap {
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  padding: 40px;
}

.rt-contact-form {
  margin-top: 24px;
}

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

.rt-form-group {
  margin-bottom: 16px;
}

.rt-form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin-bottom: 6px;
}

.rt-form-group input,
.rt-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--rt-border);
  padding: 12px 16px;
  font-size: .92rem;
  color: var(--rt-cream);
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s;
  resize: vertical;
}

.rt-form-group input::placeholder,
.rt-form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.rt-form-group input:focus,
.rt-form-group textarea:focus {
  outline: none;
  border-color: var(--rt-gold);
}

.rt-contact-form .rt-captcha-row {
  margin-bottom: 20px;
}

.rt-contact-submit {
  background: var(--rt-gold);
  color: var(--rt-navy);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.rt-contact-submit:hover {
  background: #ffd54f;
}

.rt-contact-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.rt-contact-feedback {
  font-size: .88rem;
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.4;
}

/* ========== CONTACT SIDEBAR ========== */
.rt-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt-contact-sidebar-box {
  background: var(--rt-navy);
  border: 1px solid var(--rt-border);
  padding: 28px 24px;
}

.rt-contact-sidebar-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rt-cream);
  margin-bottom: 12px;
}

.rt-contact-sidebar-box ul {
  list-style: none;
  padding: 0;
}

.rt-contact-sidebar-box li {
  position: relative;
  padding-left: 20px;
  font-size: .88rem;
  color: var(--rt-muted);
  line-height: 1.8;
}

.rt-contact-sidebar-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--rt-gold);
}

.rt-contact-sidebar-box p {
  font-size: .88rem;
  margin-bottom: 16px;
}

.rt-contact-sidebar-box .rt-btn-primary {
  font-size: .78rem;
  padding: 12px 24px;
}

/* ========== CONTACT PAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .rt-contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .rt-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rt-contact-hero-inner {
    padding: 70px 24px 60px;
  }

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

  .rt-contact-form-wrap {
    padding: 24px;
  }
}

/* ========== 404 Page ========== */
.rt-404-section {
    padding: 140px 24px 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rt-404-inner { max-width: 600px; margin: 0 auto; }
.rt-404-code {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 800;
    color: var(--rt-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.rt-404-section h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rt-text);
    margin-bottom: 16px;
}
.rt-404-desc {
    color: var(--rt-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}
.rt-404-search {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto 40px;
}
.rt-404-search input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: var(--rt-card);
    color: var(--rt-text);
    font-size: 0.95rem;
}
.rt-404-search button {
    padding: 12px 24px;
    background: var(--rt-gold);
    color: var(--rt-navy);
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
}
.rt-404-links h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rt-text);
    margin-bottom: 16px;
}
.rt-404-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.rt-404-links a {
    color: var(--rt-gold);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(239,176,32,0.3);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.rt-404-links a:hover {
    background: rgba(239,176,32,0.1);
}
