/*
Theme Name: Synergy Astro
Theme URI: https://example.com/synergy-astro
Author: Your Name
Author URI: https://example.com
Description: A bold, conversion-focused astrology theme with a full-page scrolling layout, hero section with embedded form, numbered section navigation, and ephemeris ticker integration.
Version: 1.0.21
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synergy-astro
Tags: custom-background, custom-logo, custom-menu, full-width-template, translation-ready
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */

:root {
  /* Primary Palette */
  --royal:        #2020C8;
  --royal-dark:   #1010A0;
  --royal-deeper: #080870;
  --royal-light:  #4040E0;
  --royal-pale:   #E8E8FF;
  --violet:       #7B68EE;
  --violet-light: #B8B0FF;
  --violet-pale:  #F0EEFF;
  --indigo:       #3A0CA3;
  --gold:         #F5C842;
  --gold-light:   #FFE07A;
  --cream:        #FAFAF7;
  --charcoal:     #1A1A2E;
  --ink:          #0D0D1A;
  --white:        #FFFFFF;
  --gray-100:     #F4F4F8;
  --gray-200:     #E8E8F0;
  --gray-400:     #9898B8;
  --gray-600:     #5A5A7A;
  --gray-800:     #2A2A3E;

  /* Typography
     Matched to Stargazer Podcast brand identity:
     --font-display  → Anton  (heavy all-caps geometric sans — "STARGAZER" weight)
     --font-heading  → Cinzel (elegant thin-stroke Roman caps — "PODCAST" weight)
     --font-body     → Barlow (clean humanist sans — body & label text)
     --font-label    → Barlow Condensed (wide-tracked caps — "TUESDAYS AT 8PM" weight)
  */
  --font-display: "Google Sans", sans-serif;
  --font-heading: "Google Sans", sans-serif;
  --font-body:    "Google Sans", sans-serif;
  --font-label:   "Google Sans", sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.25rem;
  --space-xl:   1.75rem;
  --space-2xl:  2.75rem;
  --space-3xl:  4.5rem;
  --space-4xl:  6rem;

  /* Layout */
  --max-width:    1140px;
  --header-h:     72px;
  --ticker-h:     40px;

  /* Effects */
  --shadow-soft: 0 4px 24px rgba(32,32,200,0.12);
  --shadow-card: 0 8px 40px rgba(32,32,200,0.18);
  --shadow-lift: 0 16px 60px rgba(32,32,200,0.25);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   0.15s;
  --dur-base:   0.3s;
  --dur-slow:   0.6s;
}
/* FONTS */
.google-sans {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

.style-script-regular {
  font-family: "Style Script", cursive;
  font-weight: 400;
  font-style: normal;
}
/* =============================================
   GOOGLE FONTS IMPORT
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--royal);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-smooth);
}

a:hover { color: var(--royal-light); }

ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 20px;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--gray-600);
  font-weight: 300;
}

strong { font-weight: 600; color: var(--charcoal); }

/* =============================================
   LAYOUT WRAPPERS
   ============================================= */

.site-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =============================================
   EPHEMERIS TICKER BAR
   Designed to work with Synergy Ephemeris plugin
   ============================================= */

#syeph-ticker,
.sat-ticker-bar {
  height: var(--ticker-h) !important;
  background: var(--royal) !important;
  border-bottom: 2px solid var(--royal-light) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

/* Admin bar offset */
.admin-bar #syeph-ticker,
.admin-bar .sat-ticker-bar {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar #syeph-ticker,
  .admin-bar .sat-ticker-bar {
    top: 46px !important;
  }
}

/* =============================================
   SITE HEADER
   ============================================= */

#sat-header {
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: var(--ticker-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: box-shadow var(--dur-base) var(--ease-smooth);
}

#sat-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(32,32,200,0.08);
}

.admin-bar #sat-header {
  top: calc(var(--ticker-h) + 32px);
}

@media (max-width: 782px) {
  .admin-bar #sat-header {
    top: calc(var(--ticker-h) + 46px);
  }
}

.sat-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Logo */
.sat-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.sat-logo img {
  height: 44px;
  width: auto;
}

.sat-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--royal);
  letter-spacing: 0.04em;
  line-height: 1;
}

.sat-logo-tagline {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Primary Navigation */
.sat-primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.sat-primary-nav a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-sm) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.sat-primary-nav a:hover,
.sat-primary-nav .current-menu-item > a {
  color: var(--royal);
  background: var(--royal-pale);
}

.sat-nav-cta a {
  background: var(--royal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-label) !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 0.72rem !important;
  transition: background var(--dur-fast), transform var(--dur-fast) !important;
}

.sat-nav-cta a:hover {
  background: var(--royal-dark) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.sat-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  flex-direction: column;
  gap: 5px;
}

.sat-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}

.sat-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sat-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.sat-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   SECTION NAVIGATION (Numbered Circles)
   ============================================= */

.sat-section-nav {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: calc(var(--ticker-h) + var(--header-h));
  z-index: 800;
  padding: var(--space-md) 0;
}

.admin-bar .sat-section-nav {
  top: calc(var(--ticker-h) + var(--header-h) + 32px);
}

.sat-section-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.sat-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-spring);
}

.sat-nav-item:hover { transform: translateY(-3px); }

.sat-nav-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--violet-pale);
  border: 2px solid var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--royal);
  transition: all var(--dur-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.sat-nav-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  pointer-events: none;
}

.sat-nav-item:hover .sat-nav-bubble,
.sat-nav-item.is-active .sat-nav-bubble {
  background: var(--royal);
  /*border-color: var(--royal);*/
  color: var(--white);
  box-shadow: 0 4px 16px rgba(32,32,200,0.35);
  transform: scale(1.08);
}

.sat-nav-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color var(--dur-fast);
  white-space: nowrap;
}

.sat-nav-item:hover .sat-nav-label,
.sat-nav-item.is-active .sat-nav-label {
  color: var(--royal);
}

/* =============================================
   HERO SECTION
   ============================================= */

.sat-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size:cover;
  background-image: url('https://www.mindoflilith.com/wp-content/uploads/2025/10/abstract-gradient-background-wallpaper_792836-371234.jpg');
}

/*.sat-hero-bg {
  position: absolute;
  inset: 0;
  
  background-size: cover;
  background-position: center;
  opacity: 1;
  /*transform: opacity(1);
  transition: transform 2s ease;
}

/*.sat-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8,8,112,0.85) 0%,
    rgba(32,32,200,0.70) 40%,
    rgba(123,104,238,0.50) 100%);
}
*/
/* Decorative stars */
/*.sat-hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sat-hero-stars::before,
.sat-hero-stars::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: sat-twinkle 3s ease-in-out infinite alternate;
}

.sat-hero-stars::before {
  width: 3px; height: 3px;
  top: 15%; left: 25%;
  box-shadow:
    80px 40px 0 rgba(255,255,255,0.5),
    160px -20px 0 rgba(255,255,255,0.3),
    240px 80px 0 rgba(255,255,255,0.6),
    320px -40px 0 rgba(255,255,255,0.4),
    420px 20px 0 rgba(255,255,255,0.5),
    500px 60px 0 rgba(255,255,255,0.3),
    580px -10px 0 rgba(255,255,255,0.6),
    650px 50px 0 rgba(255,255,255,0.4),
    30px 120px 0 rgba(255,255,255,0.3),
    130px 100px 0 rgba(255,255,255,0.5),
    230px 140px 0 rgba(255,255,255,0.4);
}

@keyframes sat-twinkle {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}*/

.sat-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Left: Embedded Form */
.sat-hero-form-wrap {
  background: rgba(123,104,238,0.25);
  border: 2px solid rgba(184,176,255,0.4);
  border-radius: var(--radius-xl);
  /*padding: var(--space-2xl);*/
  backdrop-filter: blur(16px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sat-hero-form-wrap::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  /*background: radial-gradient(circle, rgba(245,200,66,0.15), transparent 70%);*/
  pointer-events: none;
}

.sat-hero-form-wrap::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  /*background: radial-gradient(circle, rgba(123,104,238,0.3), transparent 70%);*/
  pointer-events: none;
}

.sat-hero-form-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: var(--space-lg);
}

/* Right: Hero Text */
.sat-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.52rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.sat-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.sat-hero-content * {
	color:var(--violet-pale) !important;
}
.sat-hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(232,232,255,0.85);
  font-weight: 300;
  margin-bottom: var(--space-xl);
}

.sat-hero-body {
  font-size: 0.9375rem;
  color: rgba(232,232,255,0.65);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* =============================================
   SECTION NAVIGATION STRIP (between hero and sections)
   ============================================= */

.sat-sections-strip {
  background: var(--gray-100);
  border-top: 3px solid var(--royal);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-lg) 0;
}

.sat-sections-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Each tab nav item triggers a carousel slide, not a scroll */
.sat-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-fast);
  border: none;
  background: transparent;
  font: inherit;
}

.sat-strip-item:hover {
  background: var(--royal-pale);
}

.sat-strip-item.is-active {
  background: var(--royal-pale);
}

.sat-strip-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--violet-pale);
  border: 2px solid var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--royal);
  transition: all var(--dur-base) var(--ease-smooth);
  position: relative;
}

.sat-strip-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /*background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7), transparent 55%);*/
  pointer-events: none;
}

.sat-strip-item:hover .sat-strip-bubble,
.sat-strip-item.is-active .sat-strip-bubble {
  background: var(--royal);
  border-color: var(--royal-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(32,32,200,0.30);
  transform: scale(1.06);
}

.sat-strip-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-align: center;
  transition: color var(--dur-fast);
}

.sat-strip-item:hover .sat-strip-label,
.sat-strip-item.is-active .sat-strip-label { color: var(--royal); }

/* =============================================
   CAROUSEL VIEWPORT
   Wraps all .sat-section panels; clips to show one at a time
   ============================================= */

.sat-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.sat-carousel-track {
  display: flex;
  width: 100%;
  /* JS sets transform: translateX(-N * 100%) to slide */
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide is exactly 100% of the viewport width */
.sat-carousel-track > .sat-section {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

/* Carousel arrow nav */
.sat-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
  color: var(--royal);
  font-size: 1.1rem;
  line-height: 1;
}

.sat-carousel-arrow:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.sat-carousel-arrow--prev { left: var(--space-md); }
.sat-carousel-arrow--next { right: var(--space-md); }

.sat-carousel-arrow:disabled,
.sat-carousel-arrow[aria-disabled="true"] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Carousel dot indicators */
.sat-carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.sat-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet-light);
  border: none;
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-base);
  padding: 0;
}

.sat-carousel-dot.is-active {
  background: var(--royal);
  transform: scale(1.35);
}

/* Slide enter animation — content fades in after slide lands */
.sat-carousel-track > .sat-section .sat-section-text,
.sat-carousel-track > .sat-section .sat-section-image {
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}

.sat-carousel-track > .sat-section.is-entering .sat-section-text,
.sat-carousel-track > .sat-section.is-entering .sat-section-image {
  opacity: 0;
  transform: translateY(16px);
}

.sat-carousel-track > .sat-section.is-visible .sat-section-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.sat-carousel-track > .sat-section.is-visible .sat-section-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */

.sat-section {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--ticker-h) + var(--header-h));
}

.sat-section:nth-child(even) { background: var(--gray-100); }
.sat-section:nth-child(odd)  { background: var(--cream); }

.sat-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.sat-section.layout-reverse .sat-section-inner {
  direction: rtl;
}
.sat-section.layout-reverse .sat-section-inner > * {
  direction: ltr;
}

/* Section Text */
.sat-section-text {}

.sat-section-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--violet-pale);
  border: 2px solid var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--royal);
  margin-bottom: var(--space-lg);
  position: relative;
  box-shadow: 0 4px 16px rgba(123,104,238,0.2);
}

.sat-section-number::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /*background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8), transparent 55%);*/
  pointer-events: none;
}

.sat-section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: var(--space-sm);
  display: block;
}

.sat-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.sat-section-lead {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--royal);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
}

.sat-section-body {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

/* Section Image */
.sat-section-image {
  position: relative;
}

.sat-section-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--royal-pale);
}

.sat-section-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.sat-section-image-frame:hover img {
  transform: scale(1.04);
}

/* Decorative accent on image */
.sat-section-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--violet-light);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}

/* Diagonal split background for section */
.sat-section.has-split-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--royal-pale);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.sat-section.has-split-bg .sat-section-inner {
  position: relative;
  z-index: 1;
}

/* =============================================
   BUTTONS
   ============================================= */

.sat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-smooth);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.sat-btn-primary {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
  box-shadow: 0 4px 20px rgba(32,32,200,0.3);
}

.sat-btn-primary:hover {
  background: var(--royal-dark);
  border-color: var(--royal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(32,32,200,0.4);
}

.sat-btn-outline {
  background: transparent;
  color: var(--royal);
  border-color: var(--royal);
}

.sat-btn-outline:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
}

.sat-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.sat-btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.sat-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

/* Arrow icon on button */
.sat-btn-arrow::after {
  content: '→';
  font-size: 1rem;
  font-weight: 400;
  font-family: sans-serif;
  transition: transform var(--dur-fast);
}

.sat-btn-arrow:hover::after { transform: translateX(4px); }

/* =============================================
   CONVERSION TRUST STRIP
   ============================================= */

.sat-trust-strip {
  background: var(--royal);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.sat-trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.sat-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.sat-trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sat-trust-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,228,255,0.75);
}

.sat-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   TESTIMONIALS STRIP
   ============================================= */

/*.sat-testimonials {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
  overflow: hidden;
}

.sat-testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.sat-testimonials-header h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.sat-testimonials-header p {
  color: rgba(255,255,255,0.5);
}

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

.sat-testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: border-color var(--dur-base), background var(--dur-base);
}

.sat-testimonial:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(123,104,238,0.4);
}

.sat-testimonial::before {
  content: '\201C';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-xl);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--violet);
  opacity: 0.4;
}

.sat-testimonial-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
}

.sat-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sat-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--royal);
  flex-shrink: 0;
  overflow: hidden;
}

.sat-testimonial-name {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
}

.sat-testimonial-detail {
  font-size: 0.75rem;
  color: var(--violet-light);
}

.sat-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.sat-star {
  color: var(--gold-light);
  font-size: 0.875rem;
}*/

/* =============================================
   FOOTER
   ============================================= */

#sat-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: var(--space-2xl) 0;
}

.sat-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.sat-footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  width:50px;
  height:50px;
}

.sat-footer-center {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
}

.sat-footer-links {
  display: flex;
  gap: var(--space-lg);
}

.sat-footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sat-footer-links a:hover { color: var(--white); }

/* Widget areas */
.sat-footer-widgets {
  max-width: var(--max-width);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
}

.sat-footer-widgets .widget-title {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: var(--space-md);
}

.sat-footer-widgets p,
.sat-footer-widgets li,
.sat-footer-widgets a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.sat-footer-widgets a:hover { color: var(--white); }

.sat-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 var(--space-xl) var(--space-xl);
}

/* =============================================
   FORMS (within content)
   ============================================= */

.sat-form-wrap input,
.sat-form-wrap textarea,
.sat-form-wrap select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.sat-form-wrap input:focus,
.sat-form-wrap textarea:focus {
  outline: none;
  border-color: var(--violet-light);
  background: rgba(255,255,255,0.15);
}

.sat-form-wrap input::placeholder,
.sat-form-wrap textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.sat-form-wrap label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: var(--space-xs);
}

/* =============================================
   ANIMATIONS & SCROLL REVEALS
   ============================================= */

.sat-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

.sat-reveal-delay-1 { transition-delay: 0.1s; }
.sat-reveal-delay-2 { transition-delay: 0.2s; }
.sat-reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   UTILITY CLASSES
   ============================================= */

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
}

.text-center { text-align: center; }
.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); }
.mb-0        { margin-bottom: 0 !important; }

/* =============================================
   WP CONTENT STYLES
   ============================================= */

.sat-section-body .wp-block-image img { border-radius: var(--radius-md); }
.sat-section-body .wp-block-quote {
  border-left: 3px solid var(--royal);
  padding: var(--space-sm) var(--space-lg);
  background: var(--royal-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .sat-hero-inner { gap: var(--space-2xl); }
  .sat-section-inner { gap: var(--space-2xl); }
  .sat-testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .sat-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sat-hero-form-wrap { max-width: 480px; margin: 0 auto; }
  .sat-sections-strip-inner { grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }
  .sat-strip-bubble { width: 48px; height: 48px; font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .sat-section-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .sat-section.layout-reverse .sat-section-inner { direction: ltr; }
  .sat-section-image { order: -1; }

  .sat-primary-nav { display: none; }
  .sat-primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--ticker-h) + var(--header-h));
    left: 0; right: 0;
    background: var(--white);
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 850;
  }
  .sat-primary-nav.is-open ul { flex-direction: column; gap: var(--space-sm); }
  .sat-menu-toggle { display: flex; }

  .sat-testimonials-grid { grid-template-columns: 1fr; }

  .sat-trust-divider { display: none; }
  .sat-trust-inner { gap: var(--space-lg); }

  .sat-footer-inner { flex-direction: column; text-align: center; }
  .sat-footer-center { order: 3; }
  .sat-footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .sat-sections-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .sat-hero-content h1 { font-size: 1.45rem; }
  .sat-hero-content { font-weight:700; }	
  .sat-section { padding: var(--space-2xl) 0; }
  .site-container, .sat-header-inner, .sat-section-inner,
  .sat-sections-strip-inner, .sat-footer-inner, .sat-footer-widgets {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}
