:root {
  --green: #01492b;
  --green-deep: #00381f;
  --lime: #c6f300;
  --ink: #10251b;
  --muted: #63736b;
  --paper: #f6f8f4;
  --white: #ffffff;
  --line: rgba(1, 73, 43, .10);
  --shadow: 0 28px 80px rgba(0, 43, 25, .12);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--paper); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 48px 22px;
}

.field-lines {
  position: absolute;
  inset: -30%;
  z-index: -3;
  opacity: .55;
  transform: rotate(-10deg) scale(1.1);
  background-image:
    repeating-linear-gradient(90deg, transparent 0 112px, rgba(1,73,43,.055) 112px 114px),
    repeating-linear-gradient(0deg, transparent 0 112px, rgba(1,73,43,.045) 112px 114px);
  mask-image: radial-gradient(circle at center, #000 20%, transparent 72%);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  z-index: -2;
  pointer-events: none;
}

.ambient-one {
  width: 460px;
  height: 460px;
  top: -260px;
  right: -150px;
  background: rgba(198, 243, 0, .20);
  animation: driftOne 12s ease-in-out infinite alternate;
}

.ambient-two {
  width: 520px;
  height: 520px;
  left: -300px;
  bottom: -330px;
  background: rgba(1, 73, 43, .11);
  animation: driftTwo 14s ease-in-out infinite alternate;
}

.construction-card {
  width: min(880px, 100%);
  position: relative;
  padding: clamp(34px, 6vw, 66px);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  border-radius: 30px;
  backdrop-filter: blur(16px);
  text-align: center;
  overflow: hidden;
  animation: cardEnter .8s cubic-bezier(.2,.75,.25,1) both;
}

.construction-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  margin-bottom: 34px;
}

.brand-mark-wrap {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  display: grid;
  place-items: center;
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(1,73,43,.12));
  animation: markFloat 5s ease-in-out infinite;
}

.brand-name {
  color: var(--green);
  font-size: clamp(36px, 6vw, 58px);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 900;
}

.brand-name sup {
  font-size: 9px;
  margin-left: 5px;
  vertical-align: top;
  letter-spacing: 0;
}

.brand-tagline {
  margin-top: 11px;
  color: var(--green-deep);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .26em;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(1,73,43,.12);
  border-radius: 999px;
  color: var(--green);
  background: rgba(198,243,0,.14);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(198,243,0,.16);
  animation: pulse 1.8s ease-out infinite;
}

h1 {
  margin: 24px auto 16px;
  color: var(--green-deep);
  font-size: clamp(36px, 7vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
  max-width: 760px;
}

.intro {
  margin: 0 auto;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 34px auto 0;
}

.contact-btn {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(1,73,43,.14);
  background: var(--white);
  text-decoration: none;
  color: var(--green);
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.contact-btn svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.contact-btn small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}

.contact-btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.contact-btn-primary small { color: rgba(255,255,255,.68); }

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,56,31,.12);
  border-color: rgba(1,73,43,.28);
}

.contact-btn-primary:hover {
  background: #005f38;
  border-color: #005f38;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #859088;
  font-size: 12px;
  letter-spacing: .03em;
}

.footer-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(1,73,43,.28);
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(20px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes markFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198,243,0,.42); }
  70% { box-shadow: 0 0 0 9px rgba(198,243,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,243,0,0); }
}

@keyframes driftOne {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-28px,30px,0) scale(1.08); }
}

@keyframes driftTwo {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(35px,-20px,0) scale(1.06); }
}

@media (max-width: 680px) {
  .page-shell { padding: 18px 14px; }
  .construction-card { padding: 32px 22px 26px; border-radius: 24px; }
  .brand { gap: 12px; margin-bottom: 28px; }
  .brand-mark-wrap { width: 64px; height: 64px; flex-basis: 64px; }
  .brand-name { font-size: 34px; }
  .brand-tagline { font-size: 8.5px; letter-spacing: .17em; max-width: 245px; }
  h1 { margin-top: 20px; }
  .contact-actions { grid-template-columns: 1fr; margin-top: 28px; }
  .contact-btn { min-height: 68px; }
  footer { margin-top: 30px; }
}

@media (max-width: 420px) {
  .brand { width: 100%; justify-content: center; }
  .brand-copy { min-width: 0; }
  .brand-name { font-size: 31px; }
  .brand-tagline { font-size: 7.5px; letter-spacing: .13em; }
  .intro { font-size: 15px; }
}

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