:root {
  --bg: #090a0c;
  --surface: #111215;
  --ink: #f4f3ef;
  --muted: #9a9ba3;
  --brand: #ff343b;
  --line: #27282d;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
}
::selection {
  background: #ff343b;
  color: white;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
}
.container {
  width: min(1240px, 88%);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px;
  background: var(--brand);
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #090a0ced;
  border-bottom: 1px solid #ffffff0b;
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 66px;
  height: 44px;
  object-fit: contain;
}
.brand > span {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 4px;
  font-weight: 700;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 2.45px;
  margin-top: 7px;
  font-weight: 500;
  color: #b1b1b8;
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-size: 12px;
  font-weight: 600;
  color: #b2b2b9;
  transition: color 0.2s;
}
.nav a:hover,
.nav a[aria-current] {
  color: white;
}
.nav a[aria-current]:not(.nav-contact):after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: var(--brand);
  margin: 5px auto -7px;
}
.nav .nav-contact {
  border: 1px solid #414146;
  border-radius: 5px;
  padding: 11px 18px;
  color: white;
  margin-left: 15px;
}
.nav-contact span {
  margin-left: 16px;
  color: var(--brand);
}
.menu-toggle {
  display: none;
}
.eyebrow,
.kicker {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight: 500;
}
.eyebrow {
  color: #b4b4bc;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px #ff343b80;
  margin-right: 9px;
  vertical-align: middle;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(#ffffff03 1px, transparent 1px),
    linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
main section {
  padding: 100px 0;
}
.hero {
  padding: 66px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 535px;
  align-items: center;
  gap: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 44px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.7vw, 69px);
  font-weight: 500;
  letter-spacing: -3.5px;
  line-height: 1.08;
  margin: 27px 0;
}
.hero h1 > span {
  color: var(--brand);
}
.hero-description {
  color: #aaaab3;
  font-size: 14px;
  max-width: 430px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: #e9232b;
}
.btn span {
  font-size: 19px;
  font-weight: 400;
}
.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: #414148;
  color: white;
}
.btn i {
  margin-right: 4px;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-block: 10px;
}
.text-link:hover {
  color: var(--brand);
}
.hero-origin {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: #75767e;
  margin-top: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.origin-line {
  height: 1px;
  width: 25px;
  background: #65656c;
}
.whale-scene {
  position: relative;
  height: 510px;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 55% 50%, #ec182819, transparent 65%);
}
.whale-float {
  position: relative;
  width: 125%;
  max-width: 750px;
  animation: whale-swim 8s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.hero-whale {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 24px #0008);
}
.orbit {
  position: absolute;
  border: 1px solid #ffffff0a;
  border-radius: 50%;
  width: 440px;
  height: 440px;
}
.orbit-two {
  width: 340px;
  height: 340px;
  border-style: dashed;
  animation: orbit-spin 100s linear infinite;
}
.orbit-three {
  width: 540px;
  height: 540px;
}
.orbit-one:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
  top: 65px;
  left: 61px;
  box-shadow: 0 0 15px #ff343b;
}
.scene-cross {
  position: absolute;
  color: #6c3338;
  font-size: 22px;
  font-weight: 300;
}
.cross-one {
  top: 52px;
  right: 22px;
}
.cross-two {
  bottom: 100px;
  left: 25px;
}
.scene-coordinate {
  position: absolute;
  top: 23px;
  left: 45px;
  font: 8px var(--font-display);
  letter-spacing: 2px;
  color: #6e6e77;
}
.scene-label {
  position: absolute;
  bottom: 54px;
  right: 40px;
  font: 8px var(--font-display);
  letter-spacing: 1.8px;
  color: #a7a7ae;
}
.motion-toggle {
  position: absolute;
  right: 40px;
  bottom: 17px;
  border: 0;
  background: none;
  color: #92929b;
  font-size: 9px;
  z-index: 3;
  padding: 7px;
}
.motion-toggle span {
  margin-left: 6px;
}
.hero-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #85858e;
}
.hero-bottom a span {
  margin-left: 18px;
  color: white;
}
.capability-strip {
  border-block: 1px solid var(--line);
  background: #101114;
  padding: 25px 0;
}
.capability-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.capability-strip span {
  font-family: var(--font-display);
  font-size: 16px;
  white-space: nowrap;
}
.capability-strip b {
  font-size: 23px;
  color: var(--brand);
  font-weight: 400;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 45px;
}
.section-heading > .eyebrow {
  margin: 0;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 355px;
  padding-bottom: 6px;
}
h2 {
  font: 500 clamp(32px, 3.3vw, 46px)/1.13 var(--font-display);
  letter-spacing: -1.8px;
}
h2 em {
  font-style: normal;
  color: #85858e;
}
.section-heading .eyebrow,
.approach-grid .eyebrow {
  margin-bottom: 20px;
  color: var(--brand);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 27px 23px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #16171b, #0e0f12);
  border-radius: 6px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.service-card:hover {
  border-color: #a53338;
  transform: translateY(-6px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}
.card-top i {
  font-size: 25px;
  color: var(--brand);
}
.card-top > span {
  font: 10px var(--font-display);
  color: #666670;
}
.service-card h3 {
  font: 500 20px var(--font-display);
  letter-spacing: -0.7px;
  margin-bottom: 9px;
}
.service-card .service-tagline {
  font-size: 10px;
  color: #d2d2d7;
  margin-bottom: 15px;
}
.service-card > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}
.card-bottom > span:first-child {
  font-size: 8px;
  color: #8c8c98;
}
.circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  height: 31px;
  border: 1px solid #3b3c42;
  border-radius: 50%;
  font-size: 17px;
}
.approach-section {
  background: #101114;
  border-block: 1px solid var(--line);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.approach-grid h2 {
  font-size: clamp(36px, 4vw, 55px);
}
.approach-grid .text-link {
  margin-top: 30px;
}
.approach-copy .large-copy {
  font: 400 24px/1.5 var(--font-display);
  color: #f1f1f4;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.large-copy span {
  color: #85858e;
}
.approach-copy > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 32px;
}
.principles span {
  font-size: 10px;
  color: var(--brand);
}
.principles h3 {
  font-size: 12px;
  margin: 10px 0;
}
.principles p {
  font-size: 11px;
  color: var(--muted);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.project-visual {
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.zimo-visual {
  background: radial-gradient(ellipse at 70% 50%, #1f4741, #0f2222 65%);
}
.nagi-visual {
  background: radial-gradient(ellipse at 40% 60%, #433047, #211926 65%);
}
.visual-caption {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 7px;
  letter-spacing: 2px;
  color: #b7c8c3;
  z-index: 3;
}
.visual-word {
  position: absolute;
  bottom: -48px;
  left: 20px;
  font: 600 112px var(--font-display);
  color: #ffffff08;
  letter-spacing: -8px;
}
.phone-mock {
  width: 180px;
  height: 292px;
  background: #f5f3ed;
  color: #1f3831;
  border: 5px solid #53655f;
  border-radius: 28px;
  transform: rotate(-12deg) translateY(38px);
  padding: 24px 12px 15px;
  box-shadow: 22px 30px 35px #0005;
  position: relative;
  z-index: 2;
  transition: transform 0.4s;
}
.project-card:hover .phone-mock {
  transform: rotate(-7deg) translateY(28px);
}
.phone-notch {
  position: absolute;
  top: 7px;
  left: 65px;
  width: 45px;
  height: 9px;
  background: #172e27;
  border-radius: 10px;
}
.mock-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}
.mock-brand span {
  font-size: 8px;
  float: right;
  color: #527a58;
}
.phone-mock > p {
  font-size: 10px;
  font-weight: 600;
  margin: 8px 0;
}
.house-art {
  height: 96px;
  background: linear-gradient(140deg, #a8bdb0, #759282);
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}
.house-art:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 65px;
  background: #e6dfcc;
  bottom: 0;
  left: 26px;
  clip-path: polygon(0 30%, 50% 0, 100% 30%, 100% 100%, 0 100%);
}
.house-window {
  position: absolute;
  bottom: 0;
  left: 44px;
  height: 36px;
  width: 58px;
  background: repeating-linear-gradient(
    90deg,
    #3e5a52 0 15px,
    #e4ded0 15px 19px
  );
  z-index: 1;
}
.mock-property {
  font-size: 8px;
  font-weight: 700;
  margin: 10px 0;
}
.mock-lines {
  height: 13px;
  width: 80%;
  background: repeating-linear-gradient(#a8b5ac 0 2px, transparent 2px 6px);
}
.mock-cta {
  font-size: 7px;
  background: #24493a;
  color: white;
  padding: 7px;
  margin-top: 10px;
  border-radius: 4px;
  text-align: center;
}
.ticket-mock {
  width: 78%;
  max-width: 320px;
  background: #ece6e9;
  color: #30202d;
  transform: rotate(8deg);
  padding: 25px;
  box-shadow: 20px 30px 40px #0005;
  z-index: 2;
  transition: transform 0.4s;
}
.project-card:hover .ticket-mock {
  transform: rotate(3deg);
}
.ticket-top {
  font: bold 20px var(--font-display);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ticket-top span {
  font-size: 7px;
  letter-spacing: 1px;
}
.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.ticket-route strong {
  font: 500 33px var(--font-display);
}
.ticket-route > span {
  font-size: 11px;
  color: #a485a3;
}
.ticket-cities {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}
.ticket-divider {
  border-bottom: 1px dashed #b5a9b1;
  margin: 20px -25px;
}
.ticket-mock p {
  font-size: 10px;
}
.barcode {
  width: 60%;
  height: 25px;
  margin-top: 12px;
  background: repeating-linear-gradient(
    90deg,
    #392935 0 2px,
    transparent 2px 4px,
    #392935 4px 5px,
    transparent 5px 8px
  );
}
.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}
.project-info div > span {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--muted);
}
.project-info h3 {
  font: 500 24px var(--font-display);
  margin-top: 5px;
}
.project-card > p {
  font-size: 12px;
  color: var(--muted);
  max-width: 440px;
  margin-top: 10px;
}
.process-section {
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-grid article {
  border-top: 1px solid #494950;
  padding-top: 24px;
}
.process-grid article > span {
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--brand);
}
.process-grid h3 {
  font: 500 26px var(--font-display);
  margin: 18px 0 12px;
}
.process-grid p {
  font-size: 12px;
  color: var(--muted);
}
.final-cta {
  position: relative;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid #3b1d21;
  background: radial-gradient(ellipse at 50% 100%, #5b101b55, transparent 70%);
  padding: 95px 0 110px;
}
.final-cta h2 {
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: -4px;
  line-height: 1.05;
  margin: 25px 0 35px;
}
.final-cta h2 span {
  color: var(--brand);
}
.final-cta .eyebrow {
  font-size: 9px;
}
.final-cta .container > p:last-child {
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
}
.cta-watermark {
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  font: 700 300px var(--font-display);
  color: #ffffff02;
  z-index: -1;
  letter-spacing: -15px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 20px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-top > p {
  font-size: 12px;
  color: var(--muted);
}
.footer-top > a:last-child {
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: #85858f;
}
.page-hero,
.service-hero {
  padding: 90px 0 35px;
  background: radial-gradient(ellipse at 80% 0%, #69151a25, transparent 60%);
}
.page-hero h1,
.service-hero h1 {
  font: 500 clamp(36px, 5vw, 64px)/1.15 var(--font-display);
  letter-spacing: -2px;
  max-width: 850px;
}
.breadcrumb {
  font-size: 11px;
  color: var(--brand);
  margin-bottom: 20px;
}
.section-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin-top: 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
  gap: 20px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 28px;
}
.card h3 {
  font: 500 21px/1.4 var(--font-display);
  margin-bottom: 15px;
}
.card p,
.card ul {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.card ul {
  padding-left: 18px;
}
.card h3 i {
  color: var(--brand);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.field {
  margin-bottom: 20px;
}
label {
  font-size: 12px;
  color: #ddd;
}
input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #3e3f47;
  background: #0b0c0f;
  color: white;
  padding: 13px;
  border-radius: 4px;
  margin-top: 7px;
  resize: vertical;
}
iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}
.article-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.article-list p {
  color: var(--muted);
}
.cta-band {
  border: 1px solid #5e272b;
  background: #251216;
  border-radius: 6px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-band p {
  margin-top: 14px;
  color: var(--muted);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric {
  padding: 20px;
  border: 1px solid var(--line);
}
.metric strong {
  display: block;
  font-size: 24px;
}
.reveal {
  opacity: 1;
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.show {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.motion-paused .whale-float,
.motion-paused .orbit {
  animation-play-state: paused;
}
@keyframes whale-swim {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}
@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1500px) {
  .hero-grid {
    min-height: 610px;
  }
  .hero h1 {
    font-size: 74px;
  }
  .whale-scene {
    height: 570px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: 90%;
  }
  .nav {
    gap: 22px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 53px;
    letter-spacing: -2.8px;
  }
  .whale-scene {
    height: 460px;
  }
  .whale-float {
    width: 115%;
  }
  .orbit-three {
    width: 440px;
    height: 440px;
  }
  .orbit-one {
    width: 340px;
    height: 340px;
  }
  .orbit-two {
    width: 250px;
    height: 250px;
  }
  .approach-grid {
    gap: 55px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: 88%;
  }
  .header-inner {
    min-height: 78px;
  }
  .brand > span {
    font-size: 21px;
  }
  .brand img {
    width: 55px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 4px;
  }
  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: white;
    display: block;
    margin-inline: auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #111215;
    border-bottom: 1px solid var(--line);
    padding: 25px 6%;
    align-items: stretch;
    gap: 20px;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .nav a {
    font-size: 15px;
    padding-block: 6px;
  }
  .nav a[aria-current]:after {
    display: none !important;
  }
  .nav .nav-contact {
    margin: 0;
  }
  .hero {
    padding-top: 44px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(39px, 8.3vw, 58px);
    letter-spacing: -2.5px;
    margin: 23px 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-origin {
    margin-top: 30px;
    font-size: 7px;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 27px;
  }
  .whale-scene {
    height: 370px;
    margin-top: 20px;
  }
  .whale-float {
    width: 108%;
    max-width: 530px;
  }
  .orbit-three {
    width: 340px;
    height: 340px;
  }
  .orbit-one {
    width: 270px;
    height: 270px;
  }
  .orbit-two {
    width: 200px;
    height: 200px;
  }
  .scene-coordinate {
    left: 0;
    top: 20px;
    font-size: 7px;
  }
  .scene-label {
    right: 0;
    bottom: 48px;
    font-size: 7px;
  }
  .motion-toggle {
    right: 0;
    bottom: 12px;
  }
  .cross-one {
    right: 10px;
  }
  .cross-two {
    bottom: 68px;
    left: 0;
  }
  .hero-bottom {
    font-size: 7px;
    gap: 20px;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom > a {
    margin-left: auto;
  }
  .capability-strip {
    padding: 19px 0;
  }
  .capability-strip .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }
  .capability-strip span {
    font-size: 12px;
  }
  .capability-strip b {
    font-size: 14px;
  }
  .capability-strip b:last-child {
    display: none;
  }
  main section {
    padding: 66px 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 12px;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 22px 17px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card .service-tagline {
    font-size: 9px;
  }
  .service-card > p {
    font-size: 11px;
  }
  .card-bottom {
    flex-wrap: wrap;
  }
  .card-top {
    margin-bottom: 28px;
  }
  .card-bottom > span:first-child {
    font-size: 8px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach-grid h2 {
    font-size: 42px;
  }
  .approach-copy .large-copy {
    font-size: 23px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-visual {
    height: 330px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }
  .process-grid article > span {
    font-size: 7px;
  }
  .final-cta {
    padding: 70px 0 80px;
  }
  .final-cta h2 {
    font-size: 60px;
    letter-spacing: -3px;
  }
  .final-cta .eyebrow {
    font-size: 7px;
    letter-spacing: 1.4px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
  }
  .footer-top > p {
    font-size: 10px;
  }
  .footer-top > a:last-child {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    font-size: 9px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .page-hero,
  .service-hero {
    padding: 55px 0 25px;
  }
  .page-hero h1,
  .service-hero h1 {
    font-size: 40px;
  }
  .section-intro {
    font-size: 13px;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 380px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-actions {
    gap: 14px;
  }
  .btn {
    padding: 13px 17px;
    font-size: 11px;
  }
  .text-link {
    font-size: 11px;
  }
  .whale-scene {
    height: 300px;
  }
  .orbit-three {
    width: 280px;
    height: 280px;
  }
  .orbit-one {
    width: 230px;
    height: 230px;
  }
  .scene-label {
    font-size: 6px;
  }
  .principles {
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}

/* Illustrative solution previews, built with HTML to stay sharp at every size. */
.possibilities-section {
  border-top: 1px solid var(--line);
}
.demo-note {
  color: var(--muted);
  font-size: 11px;
  margin: -15px 0 25px;
}
.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.possibility {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.solution-preview {
  height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.app-preview {
  background: radial-gradient(ellipse at bottom, #522029, #171316 80%);
}
.demo-phone {
  width: 205px;
  padding: 27px 15px 12px;
  background: #191a20;
  border: 3px solid #57515b;
  border-radius: 25px;
  transform: translateY(25px) rotate(-6deg);
  position: relative;
  box-shadow: 10px 20px 35px #0006;
}
.demo-notch {
  position: absolute;
  width: 50px;
  height: 7px;
  background: #07080a;
  border-radius: 10px;
  top: 9px;
  left: 75px;
}
.demo-overline {
  font-size: 6px;
  letter-spacing: 1px;
  color: #f79da1;
  display: block;
}
.demo-phone > strong {
  display: block;
  font: 500 25px var(--font-display);
  margin: 12px 0 3px;
}
.demo-phone > p {
  font-size: 10px;
  color: #a7a7b2;
}
.demo-appointment {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 14px 10px;
  background: #4c242c;
  margin: 16px 0;
  border-radius: 7px;
}
.demo-appointment > i {
  color: #ff777e;
  font-size: 21px;
}
.demo-appointment span {
  font-size: 8px;
}
.demo-appointment strong {
  display: block;
  font-size: 10px;
  margin-top: 3px;
}
.demo-options {
  display: flex;
  gap: 8px;
}
.demo-options span {
  flex: 1;
  background: #27282f;
  padding: 9px 7px;
  font-size: 8px;
  border-radius: 5px;
}
.demo-options i {
  margin-left: 6px;
  color: #e9878c;
}
.demo-mobile-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 12px;
  color: #b5a5b0;
}
.saas-preview {
  background: radial-gradient(ellipse at bottom, #292a53, #12131c 80%);
}
.demo-dashboard {
  width: 90%;
  background: #181923;
  border: 1px solid #434450;
  border-radius: 8px;
  transform: rotate(-3deg);
  box-shadow: 8px 15px 30px #0004;
}
.demo-window {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #343540;
  padding: 10px;
  font-size: 7px;
  color: #a9a9ba;
  letter-spacing: 1px;
}
.demo-dashboard-body {
  display: flex;
}
.demo-sidebar {
  display: flex;
  flex-direction: column;
  padding: 18px 12px;
  gap: 16px;
  border-right: 1px solid #343540;
  color: #aaa0e3;
  font-size: 12px;
}
.demo-workspace {
  padding: 15px;
  flex: 1;
  min-width: 0;
}
.demo-workspace > strong {
  font: 500 14px var(--font-display);
}
.demo-workspace > p {
  font-size: 7px;
  color: #aaaabd;
}
.demo-stats {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}
.demo-stats span {
  background: #252634;
  padding: 6px 10px;
  flex: 1;
  font-size: 7px;
  color: #bcbcc9;
  border-radius: 3px;
}
.demo-stats b {
  display: block;
  font-size: 17px;
  color: #eee;
}
.demo-chart {
  height: 55px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  border-bottom: 1px solid #52505e;
}
.demo-chart span {
  flex: 1;
  height: 35%;
  background: #9281c9;
  border-radius: 2px 2px 0 0;
}
.demo-chart span:nth-child(2) {
  height: 55%;
}
.demo-chart span:nth-child(3) {
  height: 45%;
}
.demo-chart span:nth-child(4) {
  height: 70%;
}
.demo-chart span:nth-child(5) {
  height: 60%;
}
.demo-chart span:nth-child(6) {
  height: 85%;
}
.demo-chart span:nth-child(7) {
  height: 100%;
  background: #c4b4ff;
}
.demo-chart-caption {
  display: block;
  font-size: 5px;
  color: #b6b6c9;
  margin-top: 7px;
}
.operations-preview {
  background: radial-gradient(ellipse at bottom, #153d37, #101b1b 80%);
}
.demo-flow {
  width: 78%;
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a2928;
  border: 1px solid #3a5851;
  padding: 13px;
  border-radius: 6px;
}
.flow-node > i {
  color: #87c4aa;
  font-size: 19px;
}
.flow-node > span {
  font-size: 11px;
}
.flow-node small {
  display: block;
  font-size: 8px;
  color: #a2b8b2;
}
.flow-node b {
  margin-left: auto;
  font-size: 10px;
  color: #a3dfc6;
}
.flow-connector {
  width: 1px;
  height: 15px;
  background: #6c9989;
  margin-left: 27px;
}
.possibility-copy {
  padding: 25px;
}
.possibility-copy .eyebrow {
  color: var(--brand);
  font-size: 8px;
  letter-spacing: 1px;
}
.possibility-copy h3 {
  font: 500 27px/1.2 var(--font-display);
  margin: 15px 0;
  letter-spacing: -0.8px;
}
.possibility-copy > p {
  font-size: 12px;
  color: var(--muted);
}
.possibility-copy ul {
  list-style: none;
  margin-top: 20px;
  font-size: 11px;
  color: #c4c4cb;
}
.possibility-copy li {
  margin-top: 7px;
}
.possibility-copy li::before {
  content: "+";
  color: var(--brand);
  margin-right: 10px;
}
.possibility-copy .text-link {
  margin-top: 18px;
  font-size: 11px;
}
.faq-section {
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
}
.faq-layout .eyebrow {
  color: var(--brand);
  margin-bottom: 20px;
}
.faq-layout h2 + p {
  color: var(--muted);
  font-size: 13px;
  margin: 22px 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-symbol::before {
  content: "+";
  font: 400 23px var(--font-display);
  color: var(--brand);
}
.faq-list details[open] .faq-symbol::before {
  content: "−";
}
.faq-list details > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 30px 24px 0;
}
.hero-whale {
  transform: translateY(var(--whale-drift, 0px));
}
.constellation-spark {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px 4px #ffdddd70;
  pointer-events: none;
  animation: constellation-pulse 5s ease-in-out infinite;
  transform: translateY(var(--whale-drift, 0px));
}
.spark-one {
  left: 36.4%;
  top: 58%;
}
.spark-two {
  left: 53.8%;
  top: 61%;
  animation-delay: 1.5s;
}
.spark-three {
  left: 62.9%;
  top: 40.5%;
  animation-delay: 3s;
}
@keyframes constellation-pulse {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.95;
  }
}
.motion-paused .constellation-spark {
  animation-play-state: paused;
}
.motion-paused .hero-whale,
.motion-paused .constellation-spark {
  transform: none;
}
@media (max-width: 1000px) and (min-width: 761px) {
  .possibilities-grid {
    gap: 12px;
  }
  .possibility-copy {
    padding: 18px;
  }
  .possibility-copy h3 {
    font-size: 23px;
  }
  .demo-flow {
    width: 90%;
  }
  .flow-node {
    padding: 10px;
    gap: 7px;
  }
  .demo-workspace {
    padding: 10px;
  }
  .demo-sidebar {
    padding-inline: 8px;
  }
}
@media (max-width: 760px) {
  .possibilities-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .solution-preview {
    height: 280px;
  }
  .demo-dashboard {
    max-width: 320px;
  }
  .demo-flow {
    max-width: 280px;
  }
  .possibility-copy {
    padding: 25px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .demo-note {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-whale,
  .constellation-spark {
    transform: none;
  }
  .constellation-spark {
    animation: none;
    opacity: 0.4;
  }
}
