/* Imports */
@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Brand Color Variables */
:root {
  --brand-white: #ffffff;
  --brand-teal: #00b6bc;
  --brand-navy: #232855;
  --brand-black: #1a1a1a;
}

/* Brand Color Utility Classes */
.brand-bg-primary { background-color: var(--brand-white); }
.brand-bg-secondary { background-color: var(--brand-teal); }
.brand-bg-accent { background-color: var(--brand-navy); }
.brand-text-primary { color: var(--brand-black); }
.brand-text-secondary { color: var(--brand-navy); }
.brand-text-accent { color: var(--brand-teal); }
.brand-text-white { color: var(--brand-white); }
.brand-border { border-color: rgba(35, 40, 85, 0.2); }
.brand-shadow { box-shadow: 0 4px 6px -1px rgba(35, 40, 85, 0.1), 0 2px 4px -1px rgba(35, 40, 85, 0.06); }

/* General Styles */
* {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--brand-black);
  background-color: var(--brand-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-border);
  z-index: 1000;
  padding: 1rem 0;
}

.header-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-navy);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--brand-black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--brand-teal);
}

.nav-links .btn,
.nav-links .cta-button {
  background: var(--brand-teal);
  color: var(--brand-white) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-links .btn:hover,
.nav-links .cta-button:hover {
  background: #009da3;
  color: var(--brand-white) !important;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 10rem;
  min-height: 120vh;
  background-image: url('img/lucy-bloomfield-hero.png');
  background-size: cover;
  background-position: center 1%;
  background-repeat: no-repeat;
  position: relative;
}


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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
    width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 6rem 2rem 0;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--brand-black);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* --- Magic Effects --- */
.magic {
  position: relative;
  display: inline-block;
}

.magic-star {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  left: var(--star-left, 50%);
  top: var(--star-top, 50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magic-star-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(35, 40, 85, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.magic-star-svg {
  width: 16px;
  height: 16px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 6px var(--brand-teal)) drop-shadow(0 0 2px var(--brand-navy));
}

.magic > .magic-star {
  --size: clamp(20px, 1.5vw, 30px);
  animation: scale 700ms ease forwards, rotate 1000ms linear infinite;
  display: block;
  height: var(--size);
  left: var(--star-left, 50%);
  top: var(--star-top, 50%);
  position: absolute;
  width: var(--size);
  opacity: 0.8;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.magic > .magic-star > svg {
  animation: rotate 1000ms linear infinite;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.magic > .magic-star > svg > path {
  fill: var(--brand-teal);
}

.magic > .magic-text {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(to right, var(--brand-teal), var(--brand-navy), var(--brand-teal));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  font-weight: bold;
}

@keyframes scale {
    from {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes rotate {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(180deg);
    }
  }
  
@keyframes background-pan {
    from {
    background-position: 0% center;
  }
  to {
    background-position: -200% center;
  }
}

/* --- Magic Gradient --- */
.magic-gradient {
  background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-navy) 100%);
  background-size: 200% auto;
  background-position: left center;
  transition: background-position 0.4s cubic-bezier(0.4,0,0.2,1);
}

.magic-gradient:hover {
  background-position: right center;
}

.magic-gradient-icon {
  background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-navy) 100%);
  border-radius: 0.75rem;
  transition: background-position 0.4s cubic-bezier(0.4,0,0.2,1);
  background-size: 200% auto;
  background-position: left center;
}

.magic-gradient-icon:hover,
.magic-gradient-icon:focus-visible {
  background-position: right center;
}

.hero-copy {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 3;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  text-align: center;
}

.btn-primary {
  background: var(--brand-teal);
  color: var(--brand-white);
}

.btn-primary:hover {
  background: #009da3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 182, 188, 0.3);
}

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

.btn-secondary:hover {
  background: var(--brand-teal);
  color: var(--brand-white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-black);
}

/* Hero Logos Container */

/* Scrolling Sections */
.scrolling-section {
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

/* Slot Machine Section */
.slot-machine-section {
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.slot-machine {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 200px;
}

.slot-column {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 182, 188, 0.2);
  border-radius: 8px;
  background: var(--brand-white);
}

.slot-reel {
  display: flex;
  flex-direction: column;
  animation: slot-spin 30s linear infinite;
}

.slot-column:nth-child(1) .slot-reel {
  animation-duration: 25s;
  animation-delay: 0s;
}

.slot-column:nth-child(2) .slot-reel {
  animation-duration: 27s;
  animation-delay: 0.5s;
}

.slot-column:nth-child(3) .slot-reel {
  animation-duration: 29s;
  animation-delay: 1s;
}

.slot-column:nth-child(4) .slot-reel {
  animation-duration: 31s;
  animation-delay: 1.5s;
}

.slot-column:nth-child(5) .slot-reel {
  animation-duration: 33s;
  animation-delay: 2s;
}

.slot-column:nth-child(6) .slot-reel {
  animation-duration: 35s;
  animation-delay: 2.5s;
}

.slot-item {
  min-height: 200px;
  display: flex;
    align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-align: center;
  white-space: nowrap;
}

@keyframes slot-spin {
  0% {
    transform: translateY(0);
  }
  16.66% {
    transform: translateY(-200px);
  }
  33.33% {
    transform: translateY(-400px);
  }
  50% {
    transform: translateY(-600px);
  }
  66.66% {
    transform: translateY(-800px);
  }
  83.33% {
    transform: translateY(-1000px);
  }
  100% {
    transform: translateY(-1200px);
  }
}


.brands-section {
  background: transparent;
    padding: 0;  
}

.scrolling-section .container {
  margin-bottom: 2rem;
}

.scrolling-container {
    width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.scrolling-content {
  display: flex;
  gap: 1.5rem;
  animation: scroll-horizontal 60s linear infinite;
  will-change: transform;
}

.brands-content {
  animation: none; /* Override default, use row-specific animations */
}

.scrolling-content:hover {
  animation-play-state: paused;
}

.brand-box {
  flex-shrink: 0;
  padding: 1.5rem 2rem;
  background: var(--brand-white);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--brand-black);
  white-space: nowrap;
  min-width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-horizontal-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.brands-section .scrolling-container {
  margin-bottom: 1.5rem;
}

.brands-section .scrolling-container:last-child {
  margin-bottom: 0;
}

.brands-row-1 {
  animation: scroll-horizontal 60s linear infinite;
}

.brands-row-2 {
  animation: scroll-horizontal-reverse 60s linear infinite;
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-content {
    display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content-reverse {
  flex-direction: row-reverse;
}

.about-image-wrapper {
  flex: 0 0 auto;
  width: 35%;
  max-width: 350px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
    object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-content-reverse .about-text .section-title {
  text-align: right;
}

.about-copy {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.achievement-list {
  list-style: none;
  max-width: 700px;
}

.achievement-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  color: var(--brand-black);
}

.achievement-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-teal);
    font-weight: bold;
  font-size: 1.5rem;
}

.achievement-list.no-ticks li::before {
  content: '';
  display: none;
}

.achievement-list.no-ticks li {
  padding-left: 0;
}

.achievement-list li a {
  color: var(--brand-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.achievement-list li a:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}


/* Work Together Section */
.work-together-section {
  padding: 6rem 0;
}

.work-options {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 2rem;
  margin-top: 3rem;
}

.work-option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  background: var(--brand-white);
  border-radius: 12px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.work-option-image-wrapper {
  width: 100%;
  margin-bottom: 0;
    display: flex;
    align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* Speaking Demo */
.speaking-demo {
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem;
  position: relative;
}

.demo-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-assets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.demo-asset-card {
  background: #e8e8e8;
  border: 1.5px solid var(--brand-teal);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  flex: 1;
}

.demo-asset-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-asset-info {
  flex: 1;
  min-width: 0;
}

.demo-asset-title {
  font-size: 0.875rem;
    font-weight: 600;
  color: var(--brand-teal);
  margin-bottom: 0.125rem;
}

.demo-asset-subtitle {
  font-size: 0.75rem;
  color: #666;
}

.demo-connector-line {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: rgba(0, 182, 188, 0.3);
  z-index: 1;
}

.demo-right {
  display: flex;
  align-items: flex-start;
}

.demo-profile-card {
  background: rgba(0, 182, 188, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-profile-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.demo-profile-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-section-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.demo-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(0, 182, 188, 0.15);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.demo-text-value {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.4;
}

.demo-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.demo-check-item {
  font-size: 0.875rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.work-option-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
    object-fit: cover;
  display: block;
}

/* Radial Diagram */
.radial-diagram {
    position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 2rem;
}

.radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--brand-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 182, 188, 0.3);
  z-index: 10;
  padding: 12px;
}

.radial-center-teal {
  background: var(--brand-teal);
  padding: 6px;
}

.radial-center-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.pulse-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.radial-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
    display: flex;
  flex-direction: column;
    align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.node-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-teal);
  border: 3px solid var(--brand-navy);
  box-shadow: 0 2px 8px rgba(0, 182, 188, 0.2);
}

.node-label {
  font-size: 0.75rem;
    font-weight: 600;
  color: var(--brand-navy);
  text-align: center;
  white-space: nowrap;
}

/* Orbit lines */
.orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dotted rgba(0, 182, 188, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.orbit-line-1 {
  width: 140px;
  height: 140px;
}

.orbit-line-2 {
  width: 220px;
  height: 220px;
}

.orbit-line-3 {
  width: 300px;
  height: 300px;
}

.orbit-line-4 {
  width: 380px;
  height: 380px;
}

.orbit-line-5 {
  width: 460px;
  height: 460px;
}

/* Orbit dots */
.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  z-index: 3;
  transform-origin: center;
}

.orbit-dot-inner {
  width: 100%;
  height: 100%;
  background: var(--brand-teal);
  border: 3px solid var(--brand-navy);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 182, 188, 0.5);
}

/* Orbit dot animations */
.orbit-dot-1 {
  animation: orbit-rotate-1 8s linear infinite;
}

.orbit-dot-2 {
  animation: orbit-rotate-2 10s linear infinite;
}

.orbit-dot-3 {
  animation: orbit-rotate-3 12s linear infinite;
}

.orbit-dot-4 {
  animation: orbit-rotate-4 14s linear infinite;
}

.orbit-dot-5 {
  animation: orbit-rotate-5 16s linear infinite;
}

@keyframes orbit-rotate-1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-70px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-70px) rotate(-360deg);
  }
}

@keyframes orbit-rotate-2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-110px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-110px) rotate(-360deg);
  }
}

@keyframes orbit-rotate-3 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-150px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-150px) rotate(-360deg);
  }
}

@keyframes orbit-rotate-4 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-190px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-190px) rotate(-360deg);
  }
}

@keyframes orbit-rotate-5 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-230px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-230px) rotate(-360deg);
  }
}

/* Orbit labels */
.orbit-label {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 4;
  pointer-events: none;
  transform-origin: center;
}

.orbit-label-1 {
  animation: orbit-label-rotate-1 8s linear infinite;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-70px) translateY(20px) rotate(0deg);
}

.orbit-label-2 {
  animation: orbit-label-rotate-2 10s linear infinite;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-110px) translateY(20px) rotate(0deg);
}

.orbit-label-3 {
  animation: orbit-label-rotate-3 12s linear infinite;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-150px) translateY(20px) rotate(0deg);
}

.orbit-label-4 {
  animation: orbit-label-rotate-4 14s linear infinite;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-190px) translateY(20px) rotate(0deg);
}

.orbit-label-5 {
  animation: orbit-label-rotate-5 16s linear infinite;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-230px) translateY(20px) rotate(0deg);
}

@keyframes orbit-label-rotate-1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-70px) translateY(20px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-70px) translateY(20px) rotate(-360deg);
  }
}

@keyframes orbit-label-rotate-2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-110px) translateY(20px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-110px) translateY(20px) rotate(-360deg);
  }
}

@keyframes orbit-label-rotate-3 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-150px) translateY(20px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-150px) translateY(20px) rotate(-360deg);
  }
}

@keyframes orbit-label-rotate-4 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-190px) translateY(20px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-190px) translateY(20px) rotate(-360deg);
  }
}

@keyframes orbit-label-rotate-5 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-230px) translateY(20px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-230px) translateY(20px) rotate(-360deg);
  }
}

.work-option-content {
  display: flex;
  flex-direction: column;
    justify-content: center;
  gap: 1.5rem;
}

.work-option-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.work-option-label span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.work-option-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.work-option-content .btn {
  width: auto;
    display: inline-block;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.work-option h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--brand-black);
    text-align: left;
  line-height: 1.2;
}

.work-option p {
  margin-bottom: 0;
  color: #4a4a4a;
  line-height: 1.6;
  text-align: left;
  font-size: 1rem;
}

.work-option-reverse h3,
.work-option-reverse p {
    text-align: left;
}

/* Book Section */
.book-section {
  padding: 6rem 0;
  background: var(--brand-white);
}

.book-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
    align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.book-cover-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.book-cover {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: block;
}

.book-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.book-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.book-author {
  font-size: 1.25rem;
  color: var(--brand-navy);
  font-weight: 500;
  margin-bottom: 1rem;
}

.book-description {
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.book-cta {
  margin-top: 1rem;
}

.book-cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 1.5rem;
}

.book-retailers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.book-retailer-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--brand-navy);
  color: var(--brand-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--brand-navy);
}

.book-retailer-btn:hover {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 40, 85, 0.2);
}

@media (max-width: 768px) {
  .book-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .book-cover-wrapper {
    max-width: 300px;
  }
}

/* Case Studies Section */
.case-studies-section {
  padding: 3rem 0 6rem 0;
  background: var(--brand-white);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.case-study-carousel-wrapper {
  display: none;
}

.carousel-indicators,
.carousel-nav {
  display: none;
}

.case-study-card {
  padding: 2.5rem;
  background: var(--brand-white);
  border: 1px solid rgba(35, 40, 85, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.case-study-card:hover {
      transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(35, 40, 85, 0.1);
  border-color: var(--brand-teal);
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.case-study-description {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-study-metrics {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(35, 40, 85, 0.1);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.metric-label {
  font-size: 0.875rem;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

/* Library Section */
.library-section {
  padding: 6rem 0;
    background: transparent;
  }
  
.library-intro {
  text-align: center;
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.library-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--brand-teal);
  color: var(--brand-white);
  border-color: var(--brand-teal);
}

.tab-content {
  max-width: 800px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  color: #4a4a4a;
}

.tab-panel.active {
  display: block;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  padding: 2.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid var(--brand-teal);
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--brand-black);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-teal);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #f9fafb;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--brand-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--brand-teal);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
    margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--brand-black);
}

.faq-answer {
  color: #4a4a4a;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: var(--brand-navy);
  color: var(--brand-white);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--brand-white);
  text-transform: uppercase;
}

.footer-brand-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-brand-cta {
  margin-top: 1rem;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
}

.footer-nav-column h4 {
  font-size: 0.875rem;
    font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--brand-white);
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links li {
  margin-bottom: 0.75rem;
}

.footer-nav-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-legal-links span {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-location {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-location span {
  margin: 0 0.5rem;
  color: #6b7280;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-icons .social-icon {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  width: 32px;
  height: 32px;
}

.footer-social-icons .social-icon:hover {
  color: var(--brand-white);
}

.footer-social-icons .social-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Modal */
.modal {
  display: flex;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
}

.close-modal:hover {
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .header-nav {
    padding: 0 16px;
    gap: 0.75rem;
  }

  .nav-brand {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .nav-links {
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .nav-links .btn {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
    white-space: nowrap;
  }

  .hero-section {
    padding: 4rem 0 4rem;
    min-height: 600px;
  }

  .hero-content {
    display: block;
  }

  .hero-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0 1rem;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
  }

  .hero-headline .magic .magic-text {
    white-space: normal;
  }

  .hero-ctas {
    margin-top: 1.5rem;
  }

  .hero-ctas .btn {
    width: auto;
    max-width: none;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .about-section {
    padding: 4rem 0;
  }

  .about-content {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .about-content-reverse {
    flex-direction: column;
  }

  .about-image-wrapper {
        width: 100%;
        max-width: 100%;
    margin: 0 auto;
  }

  .about-copy {
    font-size: 1rem;
  }

  .achievement-list li {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .brands-section {
    padding: 2rem 0;
  }

  .brands-row-1 {
    animation: scroll-horizontal 20s linear infinite;
  }

  .brands-row-2 {
    animation: scroll-horizontal-reverse 20s linear infinite;
  }

  .work-together-section {
    padding: 4rem 0;
  }

  .work-options {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .work-option {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .work-option-image-wrapper {
    order: 1;
    margin-bottom: 0;
    min-height: 300px;
  }

  .work-option-content {
    order: 2;
    text-align: left;
  }

  .work-option h3 {
    font-size: 1.5rem;
    text-align: left;
  }

  .work-option p {
    text-align: left;
  }

  .work-option-content .btn {
    align-self: flex-start;
  }

  .speaking-demo {
    height: auto;
    min-height: 350px;
    padding: 1.5rem 1rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .demo-assets {
    order: 2;
  }

  .demo-right {
    order: 1;
  }

  .demo-profile-card {
    padding: 1rem;
  }

  .demo-profile-title {
    font-size: 0.875rem;
  }

  .demo-asset-card {
    padding: 0.5rem;
  }

  .demo-asset-title {
    font-size: 0.75rem;
  }

  .demo-asset-subtitle {
    font-size: 0.65rem;
  }

  .demo-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }

  .demo-check-item {
    font-size: 0.75rem;
  }

  .radial-diagram {
    max-width: 100%;
    height: 300px;
    padding: 1rem;
  }

  .orbit-line-1 {
    width: 100px;
    height: 100px;
  }

  .orbit-line-2 {
    width: 140px;
    height: 140px;
  }

  .orbit-line-3 {
    width: 180px;
    height: 180px;
  }

  .orbit-line-4 {
    width: 220px;
    height: 220px;
  }

  .orbit-line-5 {
    width: 260px;
    height: 260px;
  }

  .orbit-label {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }

  .case-studies-section {
    padding: 4rem 0;
  }

  .case-studies-grid {
    display: none;
  }

  .case-study-carousel-wrapper {
    position: relative;
        width: 100%;
    overflow: hidden;
  }

  .case-study-carousel {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y pinch-zoom;
  }

  .case-study-carousel .case-study-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 1.5rem;
  }

  .case-study-card {
    padding: 1.5rem;
  }

  .case-study-title {
    font-size: 1.25rem;
  }

  .case-study-metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--brand-teal);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .carousel-indicator.active {
    background: var(--brand-teal);
    transform: scale(1.2);
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brand-teal);
    color: var(--brand-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 182, 188, 0.3);
  }

  .carousel-nav:hover {
    background: var(--brand-navy);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
  }

  .carousel-prev {
    left: 1rem;
  }

  .carousel-next {
    right: 1rem;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .slot-machine-section {
    padding: 3rem 0;
  }

  .slot-machine {
    grid-template-columns: 1fr;
    height: 150px;
  }

  .slot-machine .slot-column:not(.slot-column-mobile) {
    display: none;
  }

  .slot-column-mobile .slot-reel {
    animation-duration: 60s;
    animation-delay: 0s;
  }

  .slot-item {
    min-height: 150px;
    font-size: 0.875rem;
    padding: 1rem;
  }

  .logo-grid,
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 0 3rem;
    min-height: 500px;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-headline .magic .magic-text {
    white-space: normal;
    font-size: 0.9em;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .slot-machine {
    grid-template-columns: 1fr;
    height: 120px;
  }

  .slot-machine .slot-column:not(.slot-column-mobile) {
    display: none;
  }

  .slot-item {
    min-height: 120px;
    font-size: 0.7rem;
    padding: 0.75rem;
  }

  .site-header {
    padding: 0.5rem 0;
  }

  .header-nav {
    padding: 0 12px;
    gap: 0.5rem;
  }

  .nav-brand {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .nav-links .btn {
    font-size: 0.6rem;
    padding: 0.35rem 0.65rem;
  }

  .brands-row-1 {
    animation: scroll-horizontal 15s linear infinite;
  }

  .brands-row-2 {
    animation: scroll-horizontal-reverse 15s linear infinite;
  }

  .work-option-image-wrapper {
    min-height: 250px;
  }

  .radial-diagram {
    height: 250px;
  }

  .orbit-line-1 {
    width: 80px;
    height: 80px;
  }

  .orbit-line-2 {
    width: 110px;
    height: 110px;
  }

  .orbit-line-3 {
    width: 140px;
    height: 140px;
  }

  .orbit-line-4 {
    width: 170px;
    height: 170px;
  }

  .orbit-line-5 {
    width: 200px;
    height: 200px;
  }

  .speaking-demo {
    padding: 1rem 0.75rem;
    }
}
