/* Ocean Strategic - first layout structure */
:root {
  --cream: #f2ede7;
  --teal: #05a093;
  --navy: #1e2d46;
  --navy-dark: #071525;
  --navy-deep: #04101d;
  --white: #ffffff;
  --muted-light: rgba(242, 237, 231, 0.68);
  --muted-dark: rgba(30, 45, 70, 0.68);
  --line-light: rgba(242, 237, 231, 0.09);
  --line-dark: rgba(30, 45, 70, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1040px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="light"] {
  background: var(--cream);
  color: var(--navy-deep);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--teal);
}

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

.side-controls {
  position: fixed;
  right: 1.05rem;
  top: 50%;
  z-index: 120;
  display: grid;
  justify-items: center;
  gap: 1rem;
  transform: translateY(-50%);
}

.theme-toggle {
  width: 3.25rem;
  height: 5.85rem;
  padding: 0.32rem;
  border: 1px solid rgba(242, 237, 231, 0.14);
  border-radius: 999px;
  background: rgba(30, 45, 70, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

body[data-theme="light"] .theme-toggle {
  border-color: rgba(30, 45, 70, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(30, 45, 70, 0.16);
}

.theme-toggle-track {
  position: relative;
  display: grid;
  align-content: space-between;
  justify-items: center;
  width: 100%;
  height: 100%;
  padding: 0.58rem 0;
  border-radius: inherit;
  background: rgba(242, 237, 231, 0.08);
}

body[data-theme="light"] .theme-toggle-track {
  background: rgba(30, 45, 70, 0.06);
}

.theme-toggle-thumb {
  position: absolute;
  left: 50%;
  top: 0.26rem;
  z-index: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-50%);
  transition: transform 0.28s var(--ease);
  box-shadow: 0 12px 24px rgba(5, 160, 147, 0.24);
}

body[data-theme="dark"] .theme-toggle-thumb {
  transform: translate(-50%, 2.55rem);
}

.theme-icon {
  position: relative;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(242, 237, 231, 0.62);
  transition: color 0.2s ease;
}

body[data-theme="light"] .theme-icon {
  color: rgba(30, 45, 70, 0.48);
}

body[data-theme="light"] .theme-icon-sun,
body[data-theme="dark"] .theme-icon-moon {
  color: var(--white);
}

.scroll-progress {
  --progress: 0deg;
  position: relative;
  z-index: 1;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-progress.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.scroll-progress::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background: conic-gradient(var(--teal) var(--progress), rgba(113, 128, 149, 0.34) 0);
}

.scroll-progress::after {
  content: "";
  position: absolute;
  inset: 0.84rem;
  border-radius: 50%;
  background: var(--navy);
}

.scroll-progress-value,
.scroll-progress-arrow {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
}

.scroll-progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  font-size: 0.76rem;
  font-weight: 800;
}

.scroll-progress-arrow {
  position: absolute;
  left: 50%;
  top: calc(50% + 0.58rem);
  transform: translateX(-50%);
  font-size: 0.82rem;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 1.45rem;
  background: rgba(4, 16, 29, 0.86);
  border-bottom: 1px solid rgba(242, 237, 231, 0.05);
  backdrop-filter: blur(16px);
}

.site-nav.is-scrolled {
  background: rgba(4, 16, 29, 0.96);
}

body[data-theme="light"] .site-nav {
  background: rgba(242, 237, 231, 0.88);
  border-bottom-color: rgba(30, 45, 70, 0.08);
}

body[data-theme="light"] .site-nav.is-scrolled {
  background: rgba(242, 237, 231, 0.96);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  width: 8.5rem;
  display: inline-flex;
  align-items: center;
}

.logo-on-light,
body[data-theme="light"] .logo-on-dark {
  display: none;
}

body[data-theme="light"] .logo-on-light {
  display: block;
}

.nav-toggle {
  display: none;
}

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

.nav-section-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(242, 237, 231, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-theme="light"] .nav-section-link {
  color: rgba(30, 45, 70, 0.68);
}

.nav-section-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-section-link:hover,
.nav-section-link.is-active {
  color: var(--teal);
}

.nav-section-link.is-clicking {
  animation: nav-click-pop 0.52s var(--ease);
}

.nav-section-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-section-link.is-clicking::after {
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 14px rgba(5, 160, 147, 0.72);
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.78rem 1.45rem;
  border: 1px solid var(--teal);
  border-radius: 0;
  background: var(--teal);
  color: var(--white) !important;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  background: transparent;
  color: var(--teal) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid rgba(242, 237, 231, 0.4);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
}

.btn-secondary:hover {
  border-color: var(--teal);
}

body[data-theme="light"] .btn-secondary {
  border-color: rgba(30, 45, 70, 0.54);
  color: var(--navy);
}

.section {
  position: relative;
  scroll-margin-top: 5.4rem;
  padding: clamp(5rem, 10vw, 7rem) 1.5rem;
  overflow: hidden;
}

.section.section-focus {
  animation: section-arrive 1.1s var(--ease);
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.section-label,
.eyebrow,
.panel-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
}

.section-label::after,
.eyebrow::after,
.panel-kicker::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--teal);
}

.align-left {
  justify-content: flex-start;
  text-align: left;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  color: inherit;
}

.section-title span,
.hero h1 span,
.about h2 span {
  color: var(--teal);
  font-style: italic;
}

.typed-word {
  position: relative;
  display: inline-block;
  min-width: 7.3em;
  text-align: center;
  vertical-align: baseline;
}

.typed-word::after {
  content: "";
  display: inline-block;
  width: 0.06em;
  height: 0.78em;
  margin-left: 0.08em;
  background: var(--teal);
  transform: translateY(0.08em);
  animation: caret-blink 0.85s steps(1) infinite;
}

.section-lead {
  max-width: 610px;
  margin: 0 auto 2.6rem;
  color: currentColor;
  opacity: 0.68;
  font-size: 0.95rem;
  text-align: center;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 7.2rem;
  padding-bottom: 3.5rem;
  background:
    linear-gradient(rgba(4, 16, 29, 0.9), rgba(4, 16, 29, 0.94)),
    url("assets/bg.jpg") center / cover,
    var(--navy-deep);
  text-align: center;
}

body[data-theme="light"] .hero {
  background:
    linear-gradient(rgba(242, 237, 231, 0.84), rgba(242, 237, 231, 0.9)),
    url("assets/bgclaro.jpg") center / cover,
    var(--cream);
  color: var(--navy-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 237, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 231, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

body[data-theme="light"] .hero::before {
  background-image:
    linear-gradient(rgba(30, 45, 70, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 45, 70, 0.045) 1px, transparent 1px);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 4.5rem;
  height: 5.5rem;
  background:
    radial-gradient(90% 80% at 10% 65%, rgba(5, 160, 147, 0.12), transparent 60%),
    radial-gradient(90% 80% at 90% 65%, rgba(5, 160, 147, 0.1), transparent 58%);
  opacity: 0.75;
}

.brand-watermark {
  position: absolute;
  inset: 0;
  background: url("assets/bg2.jpg") center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

body[data-theme="light"] .brand-watermark {
  background-image: url("assets/bgclaro.jpg");
  opacity: 0.48;
}

.hero-grid {
  display: block;
  max-width: 900px;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(5, 160, 147, 0.36);
  border-radius: 999px;
  background: rgba(5, 160, 147, 0.11);
}

.eyebrow::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.eyebrow::after {
  display: none;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.4vw, 5.8rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero-sub {
  max-width: 610px;
  margin: 0 auto 1.8rem;
  color: var(--muted-light);
  font-size: 0.98rem;
}

body[data-theme="light"] .hero-sub {
  color: var(--muted-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.65rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 4rem);
  margin: 0 auto 2rem;
}

.hero-stats strong {
  display: block;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

body[data-theme="light"] .hero-stats strong {
  color: var(--navy-deep);
}

.hero-stats strong::after {
  content: "+";
  color: var(--teal);
}

.hero-stats div:nth-child(2) strong::after,
.hero-stats div:nth-child(3) strong::after {
  content: "";
}

.hero-stats span {
  display: block;
  color: rgba(242, 237, 231, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-theme="light"] .hero-stats span {
  color: rgba(30, 45, 70, 0.52);
}

.campaign-panel {
  max-width: 900px;
  margin: 1.75rem auto 0;
  padding: 1.15rem;
  border: 1px solid var(--line-light);
  background: rgba(4, 16, 29, 0.38);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

body[data-theme="light"] .campaign-panel {
  border-color: rgba(30, 45, 70, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(30, 45, 70, 0.12);
}

.campaign-panel .panel-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0.1rem;
}

.campaign-panel .panel-kicker::after {
  display: none;
}

.campaign-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem;
  background: rgba(242, 237, 231, 0.055);
  text-align: left;
}

body[data-theme="light"] .campaign-row {
  background: rgba(242, 237, 231, 0.72);
}

.campaign-row + .campaign-row {
  margin-top: 0;
}

.campaign-row span,
.service-icon,
.industry-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(5, 160, 147, 0.13);
  color: var(--teal);
}

.campaign-row svg,
.service-icon svg,
.industry-grid svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2.2;
}

.campaign-row strong,
.campaign-row small {
  display: block;
}

.campaign-row strong {
  color: var(--cream);
  font-size: 0.82rem;
}

body[data-theme="light"] .campaign-row strong {
  color: var(--navy-deep);
}

.campaign-row small {
  color: rgba(242, 237, 231, 0.55);
  font-size: 0.68rem;
  line-height: 1.35;
}

body[data-theme="light"] .campaign-row small {
  color: rgba(30, 45, 70, 0.62);
}

.proof-pill {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  margin-top: 0.1rem;
  padding: 0.55rem 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.bio {
  background:
    linear-gradient(rgba(7, 21, 37, 0.94), rgba(7, 21, 37, 0.96)),
    url("assets/bg.jpg") center / cover;
  color: var(--cream);
}

body[data-theme="light"] .bio {
  background: var(--white);
  color: var(--navy-deep);
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.58fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.bio-photo {
  position: relative;
  margin: 0;
}

.bio-photo::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid rgba(5, 160, 147, 0.34);
  pointer-events: none;
}

.bio-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(242, 237, 231, 0.12);
}

body[data-theme="light"] .bio-photo img {
  border-color: rgba(30, 45, 70, 0.1);
}

.bio .section-title {
  margin-left: 0;
  text-align: left;
}

.bio-copy p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: currentColor;
  opacity: 0.7;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.85;
}

.services,
.approach,
.about,
.final-cta {
  background: var(--navy-dark);
  color: var(--cream);
}

body[data-theme="light"] .services,
body[data-theme="light"] .approach,
body[data-theme="light"] .about {
  background: var(--cream);
  color: var(--navy-deep);
}

.services {
  background: var(--white);
  color: var(--navy-deep);
}

body[data-theme="light"] .services {
  background: var(--white);
}

.services .section-lead {
  color: var(--muted-dark);
  opacity: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}

.service-card {
  min-height: 14rem;
  padding: 1.8rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(242, 237, 231, 0.45);
}

body[data-theme="light"] .service-card {
  border-color: rgba(30, 45, 70, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.service-card h3,
.industry-grid h3,
.process-line h3 {
  margin: 1rem 0 0.55rem;
  color: inherit;
  font-size: 1rem;
  line-height: 1.25;
}

.service-card p,
.industry-grid p,
.process-line p,
.about p,
.about li {
  margin: 0;
  color: currentColor;
  opacity: 0.62;
  font-size: 0.9rem;
}

.services .service-card p {
  color: var(--muted-dark);
  opacity: 1;
}

.approach {
  background:
    linear-gradient(rgba(7, 21, 37, 0.93), rgba(7, 21, 37, 0.94)),
    url("assets/bg.jpg") center / cover;
}

body[data-theme="light"] .approach {
  background:
    linear-gradient(rgba(242, 237, 231, 0.9), rgba(242, 237, 231, 0.94)),
    url("assets/bgclaro.jpg") center / cover;
}

.approach-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.approach .section-title,
.approach .section-lead,
.about .section-title {
  margin-left: 0;
  text-align: left;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 1.5rem;
}

.approach-list {
  align-self: center;
  margin: 0;
}

.check-list div {
  position: relative;
  padding: 0.78rem 1rem 0.78rem 2.7rem;
  background: rgba(242, 237, 231, 0.07);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 700;
}

body[data-theme="light"] .check-list div {
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-deep);
}

.check-list div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.performance-card,
.quote-card {
  padding: 1.75rem;
  border: 1px solid rgba(242, 237, 231, 0.13);
  background: rgba(242, 237, 231, 0.07);
}

body[data-theme="light"] .quote-card {
  border-color: rgba(30, 45, 70, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.performance-card h3,
.quote-card p {
  margin: 0 0 1.25rem;
  color: var(--cream);
}

body[data-theme="light"] .quote-card p {
  color: var(--navy-deep);
}

.bar-row {
  display: grid;
  grid-template-columns: 4.8rem 1fr 2.3rem;
  gap: 0.65rem;
  align-items: center;
  color: var(--muted-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.bar-row + .bar-row {
  margin-top: 0.75rem;
}

.bar-row b {
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) var(--value), rgba(242, 237, 231, 0.16) var(--value));
}

.performance-stats,
.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.65rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242, 237, 231, 0.13);
}

.performance-stats strong,
.mini-stats strong {
  display: block;
  color: var(--teal);
  font-size: 1.45rem;
  line-height: 1;
}

.performance-stats span,
.mini-stats span {
  color: rgba(242, 237, 231, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-theme="light"] .quote-card .mini-stats span {
  color: rgba(30, 45, 70, 0.62);
}

.industries,
.process {
  background: var(--cream);
  color: var(--navy-deep);
}

.industries .section-lead,
.process .section-lead {
  color: var(--muted-dark);
  opacity: 1;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 850px;
  margin: 0 auto;
}

.industry-grid article {
  min-height: 11rem;
  padding: 1.65rem;
  background: var(--white);
  text-align: center;
  box-shadow: 0 16px 38px rgba(30, 45, 70, 0.07);
}

.industry-grid span {
  margin: 0 auto;
  background: rgba(30, 45, 70, 0.08);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.6rem;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 1.35rem;
  height: 1px;
  background: var(--teal);
}

.process-line article {
  position: relative;
  text-align: center;
}

.process-line strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 0 0 1px var(--teal);
}

.about {
  background:
    linear-gradient(rgba(7, 21, 37, 0.96), rgba(7, 21, 37, 0.97)),
    url("assets/bg.jpg") center / cover;
}

body[data-theme="light"] .about {
  background:
    linear-gradient(rgba(7, 21, 37, 0.96), rgba(7, 21, 37, 0.97)),
    url("assets/bg.jpg") center / cover;
  color: var(--cream);
}

.about-mark {
  position: absolute;
  inset: 0;
  background: url("assets/bg2.jpg") center / cover no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

body[data-theme="light"] .about-mark {
  background-image: url("assets/bg2.jpg");
  opacity: 0.055;
}

.about ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.2rem;
}

.shift-list {
  display: grid;
  align-self: center;
  border-top: 1px solid rgba(242, 237, 231, 0.12);
}

.shift-item {
  display: grid;
  grid-template-columns: 4.3rem 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(242, 237, 231, 0.12);
}

.shift-num {
  color: rgba(5, 160, 147, 0.28);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.shift-item h3 {
  margin: 0 0 0.2rem;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.3;
}

.shift-item p {
  margin: 0;
  color: rgba(242, 237, 231, 0.62);
  opacity: 1;
  font-size: 0.88rem;
}

.quote-card {
  max-width: 520px;
  justify-self: end;
}

.final-cta {
  padding: clamp(6rem, 12vw, 8.5rem) 1.5rem;
  text-align: center;
}

body[data-theme="light"] .final-cta {
  background: var(--navy);
  color: var(--cream);
}

.final-cta h2 {
  max-width: 660px;
  margin: 0 auto 0.85rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

.final-cta p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.site-footer {
  padding: 3.5rem 1.5rem;
  background: #020b14;
  color: rgba(242, 237, 231, 0.5);
  text-align: center;
}

.footer-logo {
  width: 8.6rem;
  margin: 0 auto 0.8rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
}

@keyframes caret-blink {
  0%,
  55% {
    opacity: 1;
  }
  56%,
  100% {
    opacity: 0;
  }
}

@keyframes nav-click-pop {
  0% {
    transform: translateY(0);
  }
  38% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes section-arrive {
  0% {
    box-shadow: inset 0 0 0 0 rgba(5, 160, 147, 0);
  }
  36% {
    box-shadow: inset 0 0 0 2px rgba(5, 160, 147, 0.28), inset 0 18px 80px rgba(5, 160, 147, 0.09);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(5, 160, 147, 0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    border: 1px solid rgba(242, 237, 231, 0.16);
    background: transparent;
    color: var(--cream);
    padding: 0.55rem 0.7rem;
    font: 700 0.78rem var(--font-body);
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.3rem;
    background: rgba(4, 16, 29, 0.98);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.2s;
  }

  .nav-links li:not(:last-child) {
    display: block;
  }

  .nav-links.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nav-links a {
    width: 100%;
    display: flex;
    padding: 0.7rem 0;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .approach-grid,
  .about-grid,
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-photo {
    max-width: 26rem;
  }

  .services-grid,
  .industry-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line::before {
    display: none;
  }

  .quote-card {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .side-controls {
    right: 0.75rem;
    top: auto;
    bottom: 1rem;
    grid-template-columns: auto auto;
    gap: 0.75rem;
    transform: none;
  }

  .theme-toggle {
    width: 3.65rem;
    height: 3.65rem;
  }

  .theme-toggle-track {
    display: block;
    padding: 0;
  }

  .theme-toggle-thumb {
    inset: 0.43rem auto auto 0.43rem;
    width: 2.8rem;
    height: 2.8rem;
    transform: none;
  }

  body[data-theme="dark"] .theme-toggle-thumb {
    transform: none;
  }

  .theme-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .theme-icon-moon,
  body[data-theme="dark"] .theme-icon-sun {
    opacity: 0;
  }

  body[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
  }

  .scroll-progress {
    width: 3.65rem;
    height: 3.65rem;
    transform: translateY(10px);
  }

  .scroll-progress.is-visible {
    transform: translateY(0);
  }

  .scroll-progress-value {
    font-size: 0.68rem;
  }

  .site-nav,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo {
    width: 7.8rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.2rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .campaign-panel {
    padding: 1rem;
  }

  .services-grid,
  .industry-grid,
  .process-line,
  .campaign-panel {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 1.45rem;
  }

  .bar-row {
    grid-template-columns: 4.6rem 1fr 2.1rem;
  }

  .hero-actions,
  .hero-stats,
  .performance-stats,
  .mini-stats {
    gap: 0.8rem;
  }
}
