:root {
  --text: #f2f6fb;
  --muted: rgba(242, 246, 251, 0.65);
  --border: rgba(242, 246, 251, 0.35);
  --shadow: rgba(0, 0, 0, 0.45);
  --header-height: 84px;
  --header-fade: clamp(90px, 14vh, 140px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #0b1a2b;
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
}

.hero-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: 0;
  right: 0;
  height: calc(100% + var(--header-height));
  z-index: -1;
  background-image: url("background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  width: 100%;
  padding: 0 48px;
  color: var(--header-ink, var(--text));
  transition: color 0.4s ease;
  isolation: isolate;
  --header-ink: var(--text);
  --header-border: rgba(242, 246, 251, 0.35);
  --header-border-strong: rgba(242, 246, 251, 0.6);
  --header-pill-bg: rgba(255, 255, 255, 0.06);
  --header-pill-hover-bg: rgba(255, 255, 255, 0.14);
}


.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header-fade);
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0) 100%);
  transition: opacity 0.45s ease;
}

.site-header::before {
  background: linear-gradient(180deg, rgba(6, 22, 36, 0.78) 0%, rgba(6, 22, 36, 0.4) 45%, rgba(6, 22, 36, 0) 100%);
  opacity: 1;
}

.site-header::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
}

.site-header.is-dark {
  --header-ink: #1b2835;
  --header-border: rgba(27, 40, 53, 0.35);
  --header-border-strong: rgba(27, 40, 53, 0.65);
  --header-pill-bg: rgba(27, 40, 53, 0.08);
  --header-pill-hover-bg: rgba(27, 40, 53, 0.16);
}

.site-header.is-dark::before {
  opacity: 0;
}

.site-header.is-dark::after {
  opacity: 1;
}

.site-header.is-top::before,
.site-header.is-top::after {
  opacity: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0em;
}

.contact {
  color: inherit;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--header-border);
  background: var(--header-pill-bg);
  transition: transform 0.2s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 72px;
  text-align: center;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-kicker,
.hero-foot {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 4.4vw, 3.9rem);
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 0.95;
  text-shadow: 0 18px 35px var(--shadow);
}

.clock {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vmin, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.clock-ticks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.clock-ticks line {
  stroke: rgba(242, 246, 251, 0.8);
  stroke-width: 0.9;
  stroke-linecap: butt;
  vector-effect: non-scaling-stroke;
}

.hand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  border-radius: 999px;
  background: rgba(242, 246, 251, 0.85);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.hand.hour {
  width: 4px;
  height: 26%;
}

.hand.minute {
  width: 3px;
  height: 36%;
}

.hand.second {
  width: 1px;
  height: 42%;
  background: rgba(208, 224, 240, 0.9);
  box-shadow: 0 0 6px rgba(210, 226, 242, 0.7);
}

.pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #f2f6fb;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.about {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: #101820;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 24px;
}

.about h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.about p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (hover: hover) {
  .contact:hover {
    transform: translateY(-2px);
    background: var(--header-pill-hover-bg);
    border-color: var(--header-border-strong);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
    --header-fade: clamp(80px, 12vh, 120px);
  }

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

  .contact {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    letter-spacing: 0.22em;
  }

  .hero-kicker,
  .hero-foot {
    letter-spacing: 0.28em;
  }
}

