:root {
  --navy-950: #020817;
  --navy-900: #061227;
  --navy-800: #0a2248;
  --akitu-blue: #1d4385;
  --cyan: #15a6df;
  --cyan-bright: #34c9ff;
  --gold: #faa534;
  --gold-light: #ffc95b;
  --white: #f7fbff;
  --muted: #9babc4;
  --line: rgba(87, 162, 219, 0.18);
  --container: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% -10%, rgba(29, 67, 133, 0.26), transparent 32rem),
    var(--navy-950);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.55px, transparent 0.55px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  padding: 20px 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
}

.site-nav a {
  color: rgba(247, 251, 255, 0.82);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan-bright);
}

.site-nav .nav-contact {
  padding: 11px 24px;
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 9px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(5, 18, 40, 0.75);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 800px;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.9) 34%, rgba(4, 27, 69, 0.48) 66%, rgba(10, 56, 124, 0.35) 100%),
    radial-gradient(circle at 76% 45%, rgba(0, 133, 225, 0.25), transparent 35rem);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--navy-950));
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr;
  padding-top: 74px;
}

.hero-copy {
  padding: 90px 0 110px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 350;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  font-weight: 200;
}

.hero-tagline {
  margin-bottom: 28px;
  color: var(--cyan-bright);
  font-size: clamp(20px, 2.3vw, 31px);
  font-weight: 350;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mobile-break {
  display: none;
}

.gold-line {
  width: 46px;
  height: 2px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 16px rgba(250, 165, 52, 0.35);
}

.legal-name {
  max-width: 600px;
  margin-bottom: 17px;
  color: var(--white);
  font-size: 17px;
  font-weight: 650;
}

.hero-summary {
  max-width: 555px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 25px;
  border-radius: 9px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: #041229;
  background: linear-gradient(135deg, var(--gold), #ffc94b);
  box-shadow: 0 10px 35px rgba(250, 165, 52, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 38px rgba(250, 165, 52, 0.3);
}

.status-pill {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 10px 21px;
  color: #c7d5e8;
  border: 1px solid rgba(81, 155, 214, 0.34);
  border-radius: 999px;
  background: rgba(4, 20, 47, 0.56);
  backdrop-filter: blur(9px);
  font-size: 14px;
}

.status-pill span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(52, 201, 255, 0.8);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-glow-one {
  top: 90px;
  right: 3%;
  background: rgba(16, 99, 205, 0.25);
}

.hero-glow-two {
  right: 28%;
  bottom: 0;
  width: 240px;
  height: 240px;
  background: rgba(21, 166, 223, 0.15);
}

.orbit-stage {
  position: absolute;
  top: 50%;
  right: -9vw;
  z-index: 1;
  width: min(58vw, 820px);
  aspect-ratio: 1.3;
  transform: translateY(-48%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(40, 190, 255, 0.42);
  border-radius: 50%;
  transform-origin: center;
}

.orbit::after {
  position: absolute;
  inset: -1px;
  content: "";
  border-top: 1px solid rgba(52, 201, 255, 0.9);
  border-radius: inherit;
  filter: drop-shadow(0 0 5px rgba(52, 201, 255, 0.55));
}

.orbit-one {
  width: 74%;
  height: 44%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

.orbit-two {
  width: 86%;
  height: 36%;
  opacity: 0.75;
  transform: translate(-50%, -50%) rotate(24deg);
}

.orbit-three {
  width: 58%;
  height: 70%;
  opacity: 0.62;
  transform: translate(-50%, -50%) rotate(67deg);
}

.orbit-four {
  width: 100%;
  height: 92%;
  opacity: 0.16;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.orbit i {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 15px var(--cyan-bright);
}

.star-core {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 10px #fff,
    0 0 28px var(--cyan-bright),
    0 0 65px rgba(52, 201, 255, 0.8);
}

.star-core::before,
.star-core::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translate(-50%, -50%);
}

.star-core::before {
  width: 120px;
  height: 2px;
}

.star-core::after {
  width: 2px;
  height: 120px;
  background: linear-gradient(0deg, transparent, #fff, transparent);
}

.planet {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 12px var(--cyan-bright);
}

.planet-one {
  top: 22%;
  right: 22%;
  background: var(--gold-light);
  box-shadow: 0 0 15px var(--gold);
}

.planet-two {
  right: 8%;
  bottom: 23%;
}

.planet-three {
  bottom: 16%;
  left: 25%;
}

.planet-four {
  top: 31%;
  left: 17%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 10;
  width: 38px;
  height: 22px;
  transform: translateX(-50%);
}

.scroll-cue::before,
.scroll-cue::after {
  position: absolute;
  bottom: 8px;
  width: 200px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(52, 201, 255, 0.55));
}

.scroll-cue::before {
  right: 26px;
}

.scroll-cue::after {
  left: 26px;
  transform: scaleX(-1);
}

.scroll-cue span {
  position: absolute;
  top: 2px;
  left: 9px;
  width: 19px;
  height: 19px;
  border-right: 2px solid var(--cyan-bright);
  border-bottom: 2px solid var(--cyan-bright);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-heading h2,
.portfolio-copy h2,
.contact-card h2 {
  margin-bottom: 20px;
  font-size: clamp(37px, 4.3vw, 61px);
  font-weight: 350;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 580px;
  color: var(--muted);
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.center > p:last-child {
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.about-copy {
  padding-top: 40px;
  color: var(--muted);
  font-size: 16px;
}

.about-copy .lead {
  color: #d9e5f2;
  font-size: 21px;
  line-height: 1.55;
}

.fact-card {
  position: relative;
  margin-top: 35px;
  padding: 25px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29, 67, 133, 0.18), rgba(21, 166, 223, 0.04));
}

.fact-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--gold);
}

.fact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fact-card strong {
  color: var(--white);
  font-size: 15px;
}

.section-focus {
  border-block: 1px solid rgba(80, 141, 197, 0.1);
  background:
    radial-gradient(circle at 50% 40%, rgba(29, 67, 133, 0.18), transparent 28rem),
    #030b1c;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.focus-card {
  position: relative;
  min-height: 315px;
  padding: 34px 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(10, 34, 72, 0.62), rgba(4, 14, 32, 0.76));
  transition: transform 250ms ease, border-color 250ms ease;
}

.focus-card:hover {
  border-color: rgba(52, 201, 255, 0.44);
  transform: translateY(-5px);
}

.focus-card.featured {
  border-color: rgba(250, 165, 52, 0.32);
  background: linear-gradient(145deg, rgba(29, 67, 133, 0.68), rgba(5, 20, 44, 0.88));
}

.card-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.focus-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  color: var(--cyan-bright);
  border: 1px solid rgba(52, 201, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  font-size: 21px;
}

.featured .focus-icon {
  color: var(--gold);
  border-color: rgba(250, 165, 52, 0.35);
}

.focus-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.focus-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-portfolio {
  padding-block: 130px;
}

.portfolio-shell {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  border: 1px solid rgba(62, 146, 210, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(7, 29, 64, 0.96) 0%, rgba(8, 44, 91, 0.83) 62%, rgba(14, 91, 142, 0.42) 100%);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}

.portfolio-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 80% 40%, rgba(21, 166, 223, 0.2), transparent 19rem);
}

.portfolio-copy {
  position: relative;
  z-index: 2;
  padding: 70px;
}

.portfolio-copy p:not(.eyebrow) {
  max-width: 550px;
  color: #b8c8dc;
  font-size: 17px;
}

.portfolio-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(250, 165, 52, 0.85);
}

.portfolio-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
}

.brand-ring {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(52, 201, 255, 0.3);
  border-radius: 50%;
}

.ring-one {
  transform: rotate(18deg) scaleY(0.43);
}

.ring-two {
  border-color: rgba(250, 165, 52, 0.25);
  transform: rotate(-48deg) scaleY(0.43);
}

.dodo-wordmark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.15), transparent 35%),
    #e55a28;
  box-shadow: 0 20px 65px rgba(229, 90, 40, 0.24);
  text-align: center;
}

.dodo-wordmark strong {
  font-size: 32px;
  letter-spacing: 0.08em;
}

.dodo-wordmark span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-contact {
  padding-top: 20px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 95px 40px;
  border: 1px solid rgba(52, 201, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 120%, rgba(21, 166, 223, 0.24), transparent 29rem),
    linear-gradient(145deg, rgba(7, 29, 64, 0.8), rgba(3, 12, 29, 0.92));
  text-align: center;
}

.contact-card > *:not(.contact-orbit) {
  position: relative;
  z-index: 2;
}

.contact-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 260px;
  border: 1px solid rgba(52, 201, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.site-footer {
  padding: 42px 0;
  color: #7488a5;
  border-top: 1px solid rgba(80, 141, 197, 0.11);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand img {
  width: 170px;
  opacity: 0.78;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 960px) {
  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 590px);
  }

  .hero-copy {
    padding-top: 105px;
  }

  .orbit-stage {
    right: -32vw;
    width: 82vw;
    opacity: 0.68;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-copy {
    max-width: 720px;
    padding-top: 0;
  }

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

  .focus-card {
    min-height: 260px;
  }

  .portfolio-copy {
    padding: 52px 45px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding: 15px 0;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: block;
    z-index: 32;
  }

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

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

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

  .site-nav {
    position: absolute;
    top: 10px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 2px;
    padding: 75px 18px 20px;
    visibility: hidden;
    border: 1px solid rgba(82, 146, 204, 0.2);
    border-radius: 18px;
    background: rgba(3, 13, 31, 0.97);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-contact {
    margin-top: 7px;
    padding: 11px 15px;
    text-align: center;
  }

  .hero {
    min-height: 820px;
    align-items: start;
  }

  .hero-grid {
    padding-top: 86px;
  }

  .hero-copy {
    padding: 88px 0 145px;
  }

  h1 {
    max-width: 380px;
    font-size: clamp(51px, 16vw, 72px);
  }

.hero-tagline {
  margin-bottom: 28px;
  color: var(--cyan-bright);
  font-size: clamp(20px, 2.3vw, 31px);
  font-weight: 350;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mobile-break {
  display: none;
}

.gold-line {
  width: 46px;
  height: 2px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 16px rgba(250, 165, 52, 0.35);
}

.legal-name {
  max-width: 600px;
  margin-bottom: 17px;
  color: var(--white);
  font-size: 17px;
  font-weight: 650;
}

.hero-summary {
  max-width: 555px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 25px;
  border-radius: 9px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: #041229;
  background: linear-gradient(135deg, var(--gold), #ffc94b);
  box-shadow: 0 10px 35px rgba(250, 165, 52, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 38px rgba(250, 165, 52, 0.3);
}

.status-pill {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 10px 21px;
  color: #c7d5e8;
  border: 1px solid rgba(81, 155, 214, 0.34);
  border-radius: 999px;
  background: rgba(4, 20, 47, 0.56);
  backdrop-filter: blur(9px);
  font-size: 14px;
}

.status-pill span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(52, 201, 255, 0.8);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-glow-one {
  top: 90px;
  right: 3%;
  background: rgba(16, 99, 205, 0.25);
}

.hero-glow-two {
  right: 28%;
  bottom: 0;
  width: 240px;
  height: 240px;
  background: rgba(21, 166, 223, 0.15);
}

.orbit-stage {
  position: absolute;
  top: 50%;
  right: -9vw;
  z-index: 1;
  width: min(58vw, 820px);
  aspect-ratio: 1.3;
  transform: translateY(-48%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(40, 190, 255, 0.42);
  border-radius: 50%;
  transform-origin: center;
}

.orbit::after {
  position: absolute;
  inset: -1px;
  content: "";
  border-top: 1px solid rgba(52, 201, 255, 0.9);
  border-radius: inherit;
  filter: drop-shadow(0 0 5px rgba(52, 201, 255, 0.55));
}

.orbit-one {
  width: 74%;
  height: 44%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

.orbit-two {
  width: 86%;
  height: 36%;
  opacity: 0.75;
  transform: translate(-50%, -50%) rotate(24deg);
}

.orbit-three {
  width: 58%;
  height: 70%;
  opacity: 0.62;
  transform: translate(-50%, -50%) rotate(67deg);
}

.orbit-four {
  width: 100%;
  height: 92%;
  opacity: 0.16;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.orbit i {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 15px var(--cyan-bright);
}

.star-core {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 10px #fff,
    0 0 28px var(--cyan-bright),
    0 0 65px rgba(52, 201, 255, 0.8);
}

.star-core::before,
.star-core::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translate(-50%, -50%);
}

.star-core::before {
  width: 120px;
  height: 2px;
}

.star-core::after {
  width: 2px;
  height: 120px;
  background: linear-gradient(0deg, transparent, #fff, transparent);
}

.planet {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 12px var(--cyan-bright);
}

.planet-one {
  top: 22%;
  right: 22%;
  background: var(--gold-light);
  box-shadow: 0 0 15px var(--gold);
}

.planet-two {
  right: 8%;
  bottom: 23%;
}

.planet-three {
  bottom: 16%;
  left: 25%;
}

.planet-four {
  top: 31%;
  left: 17%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 10;
  width: 38px;
  height: 22px;
  transform: translateX(-50%);
}

.scroll-cue::before,
.scroll-cue::after {
  position: absolute;
  bottom: 8px;
  width: 200px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(52, 201, 255, 0.55));
}

.scroll-cue::before {
  right: 26px;
}

.scroll-cue::after {
  left: 26px;
  transform: scaleX(-1);
}

.scroll-cue span {
  position: absolute;
  top: 2px;
  left: 9px;
  width: 19px;
  height: 19px;
  border-right: 2px solid var(--cyan-bright);
  border-bottom: 2px solid var(--cyan-bright);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-heading h2,
.portfolio-copy h2,
.contact-card h2 {
  margin-bottom: 20px;
  font-size: clamp(37px, 4.3vw, 61px);
  font-weight: 350;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 580px;
  color: var(--muted);
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.center > p:last-child {
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.about-copy {
  padding-top: 40px;
  color: var(--muted);
  font-size: 16px;
}

.about-copy .lead {
  color: #d9e5f2;
  font-size: 21px;
  line-height: 1.55;
}

.fact-card {
  position: relative;
  margin-top: 35px;
  padding: 25px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29, 67, 133, 0.18), rgba(21, 166, 223, 0.04));
}

.fact-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--gold);
}

.fact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fact-card strong {
  color: var(--white);
  font-size: 15px;
}

.section-focus {
  border-block: 1px solid rgba(80, 141, 197, 0.1);
  background:
    radial-gradient(circle at 50% 40%, rgba(29, 67, 133, 0.18), transparent 28rem),
    #030b1c;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.focus-card {
  position: relative;
  min-height: 315px;
  padding: 34px 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(10, 34, 72, 0.62), rgba(4, 14, 32, 0.76));
  transition: transform 250ms ease, border-color 250ms ease;
}

.focus-card:hover {
  border-color: rgba(52, 201, 255, 0.44);
  transform: translateY(-5px);
}

.focus-card.featured {
  border-color: rgba(250, 165, 52, 0.32);
  background: linear-gradient(145deg, rgba(29, 67, 133, 0.68), rgba(5, 20, 44, 0.88));
}

.card-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.focus-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  color: var(--cyan-bright);
  border: 1px solid rgba(52, 201, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  font-size: 21px;
}

.featured .focus-icon {
  color: var(--gold);
  border-color: rgba(250, 165, 52, 0.35);
}

.focus-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.focus-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-portfolio {
  padding-block: 130px;
}

.portfolio-shell {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  border: 1px solid rgba(62, 146, 210, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(7, 29, 64, 0.96) 0%, rgba(8, 44, 91, 0.83) 62%, rgba(14, 91, 142, 0.42) 100%);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}

.portfolio-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 80% 40%, rgba(21, 166, 223, 0.2), transparent 19rem);
}

.portfolio-copy {
  position: relative;
  z-index: 2;
  padding: 70px;
}

.portfolio-copy p:not(.eyebrow) {
  max-width: 550px;
  color: #b8c8dc;
  font-size: 17px;
}

.portfolio-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(250, 165, 52, 0.85);
}

.portfolio-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
}

.brand-ring {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(52, 201, 255, 0.3);
  border-radius: 50%;
}

.ring-one {
  transform: rotate(18deg) scaleY(0.43);
}

.ring-two {
  border-color: rgba(250, 165, 52, 0.25);
  transform: rotate(-48deg) scaleY(0.43);
}

.dodo-wordmark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.15), transparent 35%),
    #e55a28;
  box-shadow: 0 20px 65px rgba(229, 90, 40, 0.24);
  text-align: center;
}

.dodo-wordmark strong {
  font-size: 32px;
  letter-spacing: 0.08em;
}

.dodo-wordmark span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-contact {
  padding-top: 20px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 95px 40px;
  border: 1px solid rgba(52, 201, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 120%, rgba(21, 166, 223, 0.24), transparent 29rem),
    linear-gradient(145deg, rgba(7, 29, 64, 0.8), rgba(3, 12, 29, 0.92));
  text-align: center;
}

.contact-card > *:not(.contact-orbit) {
  position: relative;
  z-index: 2;
}

.contact-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 260px;
  border: 1px solid rgba(52, 201, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.site-footer {
  padding: 42px 0;
  color: #7488a5;
  border-top: 1px solid rgba(80, 141, 197, 0.11);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand img {
  width: 170px;
  opacity: 0.78;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 960px) {
  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 590px);
  }

  .hero-copy {
    padding-top: 105px;
  }

  .orbit-stage {
    right: -32vw;
    width: 82vw;
    opacity: 0.68;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-copy {
    max-width: 720px;
    padding-top: 0;
  }

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

  .focus-card {
    min-height: 260px;
  }

  .portfolio-copy {
    padding: 52px 45px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding: 15px 0;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: block;
    z-index: 32;
  }

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

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

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

  .site-nav {
    position: absolute;
    top: 10px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 2px;
    padding: 75px 18px 20px;
    visibility: hidden;
    border: 1px solid rgba(82, 146, 204, 0.2);
    border-radius: 18px;
    background: rgba(3, 13, 31, 0.97);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-contact {
    margin-top: 7px;
    padding: 11px 15px;
    text-align: center;
  }

  .hero {
    min-height: 820px;
    align-items: start;
  }

  .hero-grid {
    padding-top: 86px;
  }

  .hero-copy {
    padding: 88px 0 145px;
  }

  h1 {
    max-width: 380px;
    font-size: clamp(51px, 16vw, 72px);
  }

  .hero-tagline {
    max-width: 350px;
  }

  .mobile-break {
    display: initial;
  }

  .hero-summary {
    max-width: 430px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .button,
  .status-pill {
    width: 100%;
    max-width: 350px;
  }

  .status-pill {
    justify-content: center;
  }

  .orbit-stage {
    top: auto;
    right: -21vw;
    bottom: 12px;
    width: 108vw;
    opacity: 0.42;
    transform: none;
  }

  .section {
    padding: 82px 0;
  }

  .about-copy .lead {
    font-size: 19px;
  }

  .section-heading.center {
    text-align: left;
  }

  .section-heading.center > p:last-child {
    margin-inline: 0;
  }

  .portfolio-shell {
    min-height: 610px;
    grid-template-columns: 1fr;
  }

  .portfolio-copy {
    padding: 45px 30px 10px;
  }

  .portfolio-visual {
    min-height: 300px;
  }

  .brand-ring {
    width: 260px;
    height: 260px;
  }

  .dodo-wordmark {
    width: 155px;
    height: 155px;
  }

  .dodo-wordmark strong {
    font-size: 26px;
  }

  .contact-card {
    padding: 72px 25px;
  }

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

@media (max-width: 440px) {
  .hero {
    min-height: 850px;
  }

  .eyebrow {
    letter-spacing: 0.24em;
  }

  .legal-name {
    font-size: 15px;
  }

  .focus-card {
    padding: 29px 25px;
  }

  .portfolio-copy {
    padding-inline: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


