@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --ivory: #f4eee6;
  --ink: #18191d;
  --muted: #67666a;
  --line: rgba(24, 25, 29, 0.14);
  --blue: #079bc5;
  --blue-deep: #0c5c86;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
}

body {
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 100svh;
  overflow: hidden;
  background: var(--ivory);
}

.content-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 72px) clamp(28px, 5.6vw, 88px)
    clamp(24px, 3vw, 48px);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(12, 92, 134, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 92, 134, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 92% 22%, black, transparent 57%);
}

.brand-watermark {
  position: absolute;
  top: 18%;
  right: -5%;
  z-index: -2;
  width: min(34vw, 430px);
  height: auto;
  opacity: 0.035;
  transform: rotate(-8deg);
  filter: grayscale(1);
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.brand-logo {
  width: clamp(270px, 25vw, 390px);
  height: auto;
  object-fit: contain;
}

.hero-copy {
  display: flex;
  width: min(100%, 720px);
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vh, 86px) 0 clamp(38px, 6vh, 70px);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  border: 1px solid rgba(12, 92, 134, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  padding: 10px 15px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: statusPulse 2.2s ease-out infinite;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 84px);
  font-weight: 620;
  letter-spacing: -0.061em;
  line-height: 0.97;
}

.hero-copy h1 span {
  color: var(--blue-deep);
}

.intro {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.62;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 17px;
  color: #3e3e42;
  font-size: 12px;
  font-weight: 690;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 15px 21px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(7, 155, 197, 0.33);
  outline-offset: 3px;
}

.button-primary {
  min-width: 224px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(12, 92, 134, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(12, 92, 134, 0.26);
}

.button-primary span {
  font-size: 18px;
  line-height: 1;
}

.button-secondary {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-color: rgba(24, 25, 29, 0.18);
  background: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
  border-color: rgba(12, 92, 134, 0.42);
  background: rgba(255, 255, 255, 0.67);
}

.button-secondary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 570;
  letter-spacing: 0.055em;
}

.craft-progress {
  width: min(100%, 590px);
  margin-top: clamp(38px, 5.5vh, 64px);
}

.progress-head,
.progress-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-head {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress-head span:last-child {
  color: var(--blue-deep);
}

.progress-track {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(24, 25, 29, 0.14);
}

.progress-track::before {
  position: absolute;
  inset: 0;
  width: 72%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  content: "";
}

.progress-track span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  animation: craftMarker 4.8s ease-in-out infinite;
}

.progress-labels {
  margin-top: 11px;
  color: #777579;
  font-size: 9px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.9fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 21px;
  color: #56555a;
  font-size: 11px;
  line-height: 1.55;
}

.contact-strip address {
  max-width: 485px;
  font-style: normal;
}

.contact-strip address > span,
.footer-contact > span:first-child {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact {
  align-self: start;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--blue-deep);
}

.separator {
  margin: 0 5px;
  color: rgba(24, 25, 29, 0.34);
}

.visual-panel {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #102331;
  color: var(--white);
}

.scene-stack,
.scene {
  position: absolute;
  inset: 0;
}

.scene {
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: sceneCycle 18s infinite;
}

.scene-one {
  animation-delay: 0s;
}

.scene-two {
  animation-delay: 6s;
}

.scene-three {
  object-position: 48% 52%;
  animation-delay: 12s;
}

.visual-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 25, 38, 0.5) 0%, transparent 35%),
    linear-gradient(0deg, rgba(4, 24, 37, 0.76) 0%, transparent 47%),
    linear-gradient(90deg, rgba(5, 36, 54, 0.18), transparent 45%);
}

.visual-panel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 50%);
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 6%,
    rgba(65, 201, 233, 0.78) 30%,
    rgba(65, 201, 233, 0.78) 70%,
    transparent 94%
  );
  box-shadow: 0 0 22px rgba(65, 201, 233, 0.46);
  animation: scan 7.5s cubic-bezier(0.55, 0.08, 0.32, 0.98) infinite;
}

.corner {
  position: absolute;
  z-index: 4;
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, 0.48);
  border-style: solid;
}

.corner-top {
  top: 30px;
  right: 30px;
  border-width: 1px 1px 0 0;
}

.corner-bottom {
  bottom: 30px;
  left: 30px;
  border-width: 0 0 1px 1px;
}

.visual-top {
  position: absolute;
  top: clamp(30px, 4vw, 62px);
  right: clamp(28px, 4vw, 62px);
  left: clamp(28px, 4vw, 62px);
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.production-badge {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(4, 31, 48, 0.58);
  padding: 12px 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.production-badge .badge-number {
  color: #7edaf0;
  font-size: 21px;
  font-weight: 770;
  letter-spacing: -0.05em;
}

.production-badge > span:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.frame-count {
  position: relative;
  width: 48px;
  height: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.count-label {
  position: absolute;
  inset: 0;
  opacity: 0;
  white-space: nowrap;
  animation: titleCycle 18s infinite;
}

.count-one {
  animation-delay: 0s;
}

.count-two {
  animation-delay: 6s;
}

.count-three {
  animation-delay: 12s;
}

.visual-caption {
  position: absolute;
  right: clamp(30px, 5vw, 72px);
  bottom: clamp(34px, 5.5vw, 78px);
  left: clamp(30px, 5vw, 72px);
  z-index: 5;
}

.eyebrow {
  margin: 0 0 17px;
  color: #76d6ec;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.scene-titles {
  position: relative;
  min-height: 120px;
}

.scene-title {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 620px;
  opacity: 0;
  font-size: clamp(31px, 3.2vw, 52px);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
  animation: titleCycle 18s infinite;
}

.title-one {
  animation-delay: 0s;
}

.title-two {
  animation-delay: 6s;
}

.title-three {
  animation-delay: 12s;
}

.measure-line {
  position: relative;
  height: 19px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.42) 0,
    rgba(255, 255, 255, 0.42) 1px,
    transparent 1px,
    transparent 7.14%
  );
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 8px;
}

.measure-line::after {
  position: absolute;
  top: -2px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #79d9ef;
  box-shadow: 0 0 13px #55c9e4;
  content: "";
  animation: measure 6s ease-in-out infinite;
}

.measure-start,
.measure-end {
  position: absolute;
  top: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.measure-start {
  left: 0;
}

.measure-end {
  right: 0;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(7, 155, 197, 0.42);
  }
  65% {
    box-shadow: 0 0 0 8px rgba(7, 155, 197, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(7, 155, 197, 0);
  }
}

@keyframes craftMarker {
  0%,
  8% {
    left: 0;
  }
  46%,
  58% {
    left: 38%;
  }
  92%,
  100% {
    left: calc(72% - 7px);
  }
}

@keyframes sceneCycle {
  0%,
  29% {
    opacity: 1;
    transform: scale(1.035);
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.11);
  }
}

@keyframes titleCycle {
  0%,
  27% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
    transform: translateY(-9px);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes scan {
  0%,
  12% {
    left: -20%;
    opacity: 0;
  }
  20%,
  76% {
    opacity: 1;
  }
  86%,
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes measure {
  0%,
  12% {
    left: 0;
  }
  50% {
    left: calc(100% - 4px);
  }
  88%,
  100% {
    left: 0;
  }
}

@media (max-width: 1180px) {
  .coming-soon {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .content-panel {
    padding-right: 48px;
    padding-left: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 5.8vw, 68px);
  }

  .contact-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .coming-soon {
    display: block;
    overflow: visible;
  }

  .content-panel {
    min-height: auto;
    padding: 28px 24px 32px;
  }

  .site-header {
    min-height: 54px;
  }

  .brand-logo {
    width: min(310px, 82vw);
  }

  .brand-watermark {
    top: 19%;
    right: -15%;
    width: 66vw;
  }

  .hero-copy {
    min-height: 700px;
    padding: 70px 0 62px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(45px, 10.5vw, 74px);
  }

  .contact-strip {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  }

  .visual-panel {
    min-height: min(780px, 88svh);
  }

  .scene-three {
    object-position: center 44%;
  }
}

@media (max-width: 620px) {
  .content-panel {
    padding: 22px 20px 28px;
  }

  .hero-copy {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .status-pill {
    margin-bottom: 24px;
    padding: 9px 12px;
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 60px);
    line-height: 0.98;
  }

  .intro {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

  .service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .service-list li {
    font-size: 9px;
    line-height: 1.35;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .button-secondary {
    align-items: center;
  }

  .craft-progress {
    margin-top: 40px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 10px;
  }

  .visual-panel {
    min-height: 680px;
  }

  .visual-top {
    top: 28px;
    right: 22px;
    left: 22px;
  }

  .production-badge {
    gap: 8px;
    padding: 10px 11px;
  }

  .production-badge .badge-number {
    font-size: 17px;
  }

  .production-badge > span:last-child {
    font-size: 8px;
  }

  .visual-caption {
    right: 24px;
    bottom: 40px;
    left: 24px;
  }

  .scene-titles {
    min-height: 100px;
  }

  .scene-title {
    font-size: clamp(30px, 9vw, 43px);
  }

  .corner-top {
    top: 18px;
    right: 18px;
  }

  .corner-bottom {
    bottom: 18px;
    left: 18px;
  }
}

@media (max-height: 950px) and (min-width: 901px) {
  .content-panel {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .site-header {
    min-height: 58px;
  }

  .brand-logo {
    width: 330px;
  }

  .hero-copy {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .status-pill {
    margin-bottom: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 4.8vw, 64px);
  }

  .intro {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .service-list {
    margin-top: 16px;
  }

  .actions {
    margin-top: 22px;
  }

  .craft-progress {
    margin-top: 24px;
  }

  .contact-strip {
    padding-top: 12px;
  }
}

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

  .scene-one,
  .title-one,
  .count-one {
    opacity: 1;
  }
}
