/* ============================================
   J RYAN RUSSOW — Global Stylesheet
   Clean Rebuild
   ============================================ */

/* ============================================
   1. VARIABLES
   ============================================ */
:root {
  --navy: #0A2E5A;
  --navy-dark: #071E3D;
  --navy-light: #0D3A72;
  --gold: #D4AF37;
  --gold-hover: #E5C84B;
  --dark: #0F172A;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --white-muted: #D1D5DB;
  --gray-text: #334155;
  --gray-400: #9CA3AF;
  --gray-500: #647481;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --border: #E2E8F0;
  --green: #22C55E;
  --red: #EF4444;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'EB Garamond', Georgia, serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --max-width: 1080px;
  --narrow-width: 760px;

  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 18px rgba(10, 46, 90, 0.12);
  --shadow-lg: 0 16px 40px rgba(10, 46, 90, 0.18);

  --transition: 0.25s ease;
}

/* ============================================
   2. RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, blockquote,
figure, picture {
  margin: 0;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================
   3. BASE / TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  color: var(--gray-text);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--dark);
  font-weight: 700;
}

small {
  font-size: 0.875rem;
  color: var(--gray-500);
}

blockquote {
  border-left: 4px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote p,
blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-2xl) 0;
}

/* ============================================
   4. LINKS
   ============================================ */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   5. ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-md);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   6. LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--narrow-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(10, 46, 90, 0.03) 0%, rgba(212, 175, 55, 0.04) 100%);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.85;
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.32);
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--navy-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   8. HEADER & NAVBAR
   ============================================ */
.site-header {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem var(--space-lg);
}

.nav-logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;}

.nav-logo img {
  height: 54px;
  width: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: var(--navy-light);
  text-decoration: none;
}

.nav-link.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-hover) !important;
  color: var(--navy-dark) !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* ============================================
   9. MOBILE NAVIGATION
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   10. HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  top: -300px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   11. PAGE BANNER / INNER HERO
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  top: -300px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.page-banner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.04);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ============================================
   12. SECTION HEADINGS
   ============================================ */
.section-label {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.content-shell,
.content-block {
  text-align: left;
}

.section-heading {
  margin-bottom: var(--space-lg);
}

.section-heading h2 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.section-heading p {
  max-width: 720px;
}

h2 {
  position: relative;
  margin-bottom: var(--space-lg);
}

h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.65rem;
  background: var(--gold);
  border-radius: 2px;
}

h3 {
  color: var(--navy);
  margin-bottom: var(--space-md);
}

/* ============================================
   13. LISTS
   ============================================ */
ul,
ol {
  margin: var(--space-md) 0;
  padding-left: 1.5rem;
}

ul li,
ol li {
  margin-bottom: 0.75rem;
  color: var(--gray-text);
  line-height: 1.75;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

ul li::marker,
ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

.styled-list,
.numbered-list,
.pillar-list,
.pillar-scorecard {
  margin: var(--space-md) 0 0;
  padding-left: 1.5rem;
}

.styled-list,
.pillar-list {
  list-style: disc;
}

.numbered-list,
.pillar-scorecard {
  list-style: decimal;
}

.styled-list li,
.numbered-list li,
.pillar-list li,
.pillar-scorecard li {
  margin-bottom: 0.75rem;
  color: var(--gray-text);
  line-height: 1.75;
}

.styled-list li::marker,
.numbered-list li::marker,
.pillar-list li::marker,
.pillar-scorecard li::marker {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   14. TABLES
   ============================================ */
.table-wrap {
  overflow-x: auto;
  margin: var(--space-xl) 0;
}

th,
td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(10, 46, 90, 0.05);
  color: var(--navy);
  font-weight: 700;
}

/* ============================================
   15. CARDS
   ============================================ */
.card,
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
}

.card:hover,
.content-card:hover {
  box-shadow: var(--shadow-md);
}

.content-card-accent {
  border-top: 4px solid var(--gold);
}

.card-kicker,
.pillar-number {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.content-grid,
.pillar-method-stack {
  display: grid;
  gap: var(--space-lg);
}

.highlight-note,
.pillar-note {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy);
}

/* ============================================
   16. CTA BLOCK
   ============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-block h2::after {
  margin-left: auto;
  margin-right: auto;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

.cta {
  text-align: center;
  margin: var(--space-2xl) 0;
}

/* ============================================
   17. FORMS
   ============================================ */
label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-row.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   18. HEADER/FOOTER CONTENT AREAS
   ============================================ */
.site-footer {
  background: #161832;
  color: #CBD5E1;
  padding: 2rem 0 1.25rem;
  border-top: 2px solid var(--gold);
  margin-top: var(--space-3xl);
}

.site-footer .container {
  max-width: 1120px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-brand {
  min-width: 0;
}

.footer-brand .footer-logo {
  display: block;
  width: 120px;
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: brightness(1.08);
}

.footer-brand p {
  max-width: 340px;
  color: #94A3B8;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

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

.footer-col li {
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: #9FB0C9;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  color: var(--gray-400);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: var(--gray-400);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================
   19. UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }
.text-dark { color: var(--dark); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.gold-divider {
  border: none;
  border-top: 2px solid var(--gold);
  margin: var(--space-xl) 0;
  opacity: 0.4;
}

/* ============================================
   20. INNER FEATURE PAGES
   ============================================ */
.feature-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;           /* changed from hidden — was clipping card content */
  box-shadow: var(--shadow-lg);
}

.feature-hero-media {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: visible;  /* changed from hidden */
}

.feature-hero-media img
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.feature-hero-media .content-card {
  height: 100%;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.feature-hero-body {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%);
  color: var(--white);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.feature-hero-body h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.feature-hero-body h2::after {
  display: none;
}

.feature-hero-body p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-hero-body strong {
  color: var(--white);
}

.feature-hero-body .badge {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  display: block;          /* add this */
  text-align: center;      /* add this */
  width: fit-content;      /* add this — keeps it pill-shaped, not full width */
  margin: 0 auto;          /* add this — centers it */
}

/* White text overrides inside navy feature-hero-body */
.feature-hero-body .styled-list li,
.feature-hero-body .numbered-list li {
  color: rgba(255, 255, 255, 0.88);
}

.feature-hero-body .styled-list li::marker,
.feature-hero-body .numbered-list li::marker {
  color: var(--gold);
}

.feature-hero-body .icon-list li {
  color: rgba(255, 255, 255, 0.88);
}

.quote-panel {
  text-align: left;
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(212, 175, 55, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-panel p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin: 0;
}

.quote-attribution {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-500);
}
/* ============================================
   21. ACCORDION / FAQ
   ============================================ */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  background: var(--white);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  background: var(--white);
  padding: 1.25rem var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: var(--space-md);
}

.accordion-trigger:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--navy);
}

.accordion-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.accordion-body {
  display: none;
  padding: var(--space-lg);
  background: var(--white);
}

.accordion-body.is-open {
  display: block;
}

/* ============================================
   22. MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 61, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform var(--transition);
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-400);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--dark);
}

/* ============================================
   23. TOASTS
   ============================================ */
.toast-container {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.toast {
  background: var(--dark);
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  min-width: 280px;
  max-width: 380px;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  border-left: 4px solid var(--gold);
}

.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast.is-hiding {
  transform: translateX(120%);
  opacity: 0;
}

/* ============================================
   24. PROGRESS & STEPS
   ============================================ */
.progress-bar-wrap {
  background: var(--border);
  border-radius: var(--radius-full);
  height: 8px;
  overflow: hidden;
  margin: var(--space-md) 0;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

.step-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
  padding: var(--space-sm) 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 60px;
  max-width: 120px;
  position: relative;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-400);
}

.step.active .step-circle,
.step.completed .step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
}

.step.active .step-label {
  color: var(--gold);
}

/* ============================================
   25. TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: var(--space-xl) 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.15));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--light);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-title {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-body {
  color: var(--gray-text);
  line-height: 1.7;
}

/* ============================================
   26. TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -0.25rem;
  left: 1.1rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
}

.testimonial-featured {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

.testimonial-featured::before {
  content: "\201C";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 10rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.testimonial-featured .testimonial-quote {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.testimonial-featured .testimonial-name {
  color: var(--gold);
}

/* ============================================
   27. PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: start;
  margin: var(--space-xl) 0;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

/* ============================================
   28. ALERT / NOTICE BOXES
   ============================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  border-left: 4px solid transparent;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: var(--space-lg) 0;
}

.alert-info {
  background: rgba(59, 130, 246, 0.07);
  border-left-color: #3B82F6;
  color: #1E3A5F;
}

.alert-success {
  background: rgba(34, 197, 94, 0.07);
  border-left-color: var(--green);
  color: #14532D;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: #F59E0B;
  color: #78350F;
}

.alert-error {
  background: rgba(239, 68, 68, 0.07);
  border-left-color: var(--red);
  color: #7F1D1D;
}

.alert-gold {
  background: rgba(212, 175, 55, 0.08);
  border-left-color: var(--gold);
  color: var(--navy);
}

/* ============================================
   29. QUIZ COMPONENTS
   ============================================ */
.quiz-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.quiz-header h1 {
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.answer-option {
  position: relative;
}

.answer-option input[type="radio"],
.answer-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.answer-label {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-text);
  font-weight: 500;
  transition: all var(--transition);
}

.answer-label:hover,
.answer-option input:checked + .answer-label {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--navy);
}
/* --- Answer option span target (matches quiz.html structure) --- */
.answer-option > span {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-text);
  font-weight: 500;
  transition: all var(--transition);
}

.answer-option:hover > span,
.answer-option input:checked + span {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--navy);
}

/* --- Fieldset reset --- */
.quiz-question {
  border: none;
  padding: 0;
  margin: 0;
}

.quiz-question legend {
  display: block;
  width: 100%;
  margin-bottom: var(--space-md);
}

/* --- Progress bar --- */
.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

/* --- Badge pill --- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Section copy --- */
.section-copy {
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-copy-narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Section intro block --- */
.section-intro {
  margin-bottom: var(--space-xl);
}

/* --- Button group --- */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.button-group-centered {
  justify-content: center;
}

/* --- Button block (full width) --- */
.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}
/* --- Content card icon (emoji/icon above card heading) --- */
.content-card-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  display: block;
  line-height: 1;
}

/* --- Background utilities --- */
.bg-light {
  background: var(--light);
}

.bg-navy {
  background: var(--navy);
  color: var(--light);
}

.bg-dark {
  background: var(--dark);
  color: var(--light);
}

/* --- Stat Cards (used inside .bg-navy) --- */
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  overflow: visible;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  overflow: visible;
  white-space: nowrap;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}
/* --- Icon list (checkmark/icon + text layout) --- */
.icon-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 0;
}

.icon-list li::marker {
  display: none;
}

.list-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

/* Icon list on navy background (feature-hero-body) */
.feature-hero-body .icon-list li {
  color: rgba(255, 255, 255, 0.88);
}
/* ============================================
   PILLAR CARDS
   ============================================ */
.pillar-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pillar-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-md);
}

.pillar-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: auto;
  transition: transform var(--transition);
}

.pillar-card:hover .pillar-arrow {
  transform: translateX(4px);
}

/* ============================================
   FEATURE LOGO (card media panel)
   ============================================ */
.feature-logo {
  display: block !important;
  width: auto !important;
  max-width: 220px !important;
  height: auto !important;
  max-height: 220px !important;
  object-fit: contain !important;
  margin: 0 auto var(--space-md) !important;
  flex-shrink: 0;
}

/* ============================================
   CONTENT CARD HEADER
   ============================================ */
.content-card-header {
  margin-bottom: var(--space-lg);
}

.content-card-header-centered {
  text-align: center;
}

.content-card-header-centered h3 {
  margin-bottom: var(--space-xs);
}

.content-card-header-centered p {
  margin-bottom: 0;
}

/* Cap the logo image area so it never fills the card */
.feature-hero-media .content-card-header {
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================
   DARK BACKGROUND OVERRIDES
   ============================================ */

/* .text-muted is too dark on .bg-dark — lighten it */
.bg-dark .text-muted,
.bg-dark .section-copy {
  color: rgba(255, 255, 255, 0.6);
}

/* Headings inside bg-dark need to be white */
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--white);
}

/* h2::after gold bar — center it under centered headings */
.section-heading.centered::after,
h2.centered::after {
  margin-left: auto;
  margin-right: auto;
}
/* ============================================
   30. DAILY CHECK-IN COMPONENTS
   ============================================ */
.checkin-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.checkin-title,
.checkin-date {
  text-align: center;
}

.checkin-date {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.checkin-title {
  color: var(--navy);
  margin-bottom: var(--space-2xl);
}

.checkin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
}

.checkin-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.checkin-tab.active,
.checkin-tab:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* ============================================
   31. APPLICATION FORM
   ============================================ */
.application-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.application-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.application-section-title {
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.application-section-title .section-number {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-md);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.commitment-item:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.03);
}

/* ============================================
   32. COMPOUND CIRCLE
   ============================================ */
.compound-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
  padding: var(--space-2xl) 0;
}

.hub-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 12px rgba(212, 175, 55, 0.08),
    0 0 0 24px rgba(212, 175, 55, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.hub-center-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.hub-center-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.hub-spokes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  width: 100%;
}

.spoke-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition);
}

.spoke-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   33. SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate="fade-up"]   { transform: translateY(24px); }
[data-animate="fade-in"]   { transform: none; }
[data-animate="fade-left"] { transform: translateX(-24px); }
[data-animate="fade-right"]{ transform: translateX(24px); }
[data-animate="scale-up"]  { transform: scale(0.93); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   34. LOADING STATES
   ============================================ */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   35. MEDIA QUERIES
   ============================================ */
@media (max-width: 900px) {
  .grid-3,
  .testimonial-grid,
  .pricing-grid,
  .hub-spokes {
    grid-template-columns: 1fr 1fr;
  }

  .feature-hero {
    grid-template-columns: 1fr;
  }

  .feature-hero-media img {
    min-height: 300px;
  }

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

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.85rem; }
  h3 { font-size: 1.35rem; }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .main-nav.nav-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center !important;
  }

  .hero-section,
  .page-banner {
    padding: 3.5rem 1.5rem 3rem;
  }

  .hero-section h1,
  .page-banner h1 {
    font-size: 2.2rem;
  }

  .hero-sub,
  .page-banner p {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .grid-2,
  .grid-3,
  .testimonial-grid,
  .pricing-grid,
  .hub-spokes,
  .form-row,
  .form-row.cols-3,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .feature-hero-body,
  .cta-block,
  .modal {
    padding: var(--space-xl) var(--space-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .container,
  .container-narrow,
  .container-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-hero {
    grid-template-columns: 1fr;
  }

  .feature-hero-media .content-card {
    border-radius: var(--radius-lg);
  }
} /* ← closing brace goes HERE, after everything */

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  .hero-section h1,
  .page-banner h1 {
    font-size: 1.9rem;
  }

  .btn {
    padding: 0.8rem 1.35rem;
    font-size: 0.96rem;
  }

.feature-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* When feature-hero-media contains a card instead of an image */
.feature-hero-media .content-card {
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

  .toast-container {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }

  .toast {
    min-width: unset;
    max-width: 100%;
  }
}

/* ============================================
   36. KEYFRAMES
   ============================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}