:root {
  --bg:       #ffffff;
  --surface:  #edeae2;
  --white:    #ffffff;
  --border:   rgba(0,25,49,0.08);
  --accent:   #00B0F6;
  --accent2:  #007EB0;
  --ink:      #001931;
  --muted:    rgba(0,25,49,0.45);
  --mono:     'DM Mono', monospace;
  --display:  'Bebas Neue', sans-serif;
  --sans:     'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,25,49,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,176,246,0.10) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: drift1 16s ease-in-out infinite alternate;
}
.glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,180,50,0.09) 0%, transparent 70%);
  bottom: 200px; left: -120px;
  animation: drift2 20s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-60px, 80px); } }
@keyframes drift2 { to { transform: translate(60px, -50px); } }

.corner {
  position: fixed;
  width: 28px; height: 28px;
  border-color: rgba(0,176,246,0.25);
  border-style: solid;
  pointer-events: none;
  z-index: 10;
}
.corner-tl { top: 22px; left: 22px; border-width: 1px 0 0 1px; }
.corner-tr { top: 22px; right: 22px; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 22px; left: 22px; border-width: 0 0 1px 1px; }
.corner-br { bottom: 22px; right: 22px; border-width: 0 1px 1px 0; }

.ticker {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0,25,49,0.10);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 10;
}

/* ── HEADER ── */
header {
  position: relative;
  z-index: 5;
  padding: 36px 52px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo img {height:108px;mix-blend-mode:multiply;display:block;padding-bottom: 20px;}
.logo-name { display:none;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.logo-tag { display:none;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}
.badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}
.badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.1} }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 52px;
  gap: 60px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.headline {
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 130px);
  letter-spacing: 0.03em;
  line-height: 0.90;
  color: var(--ink);
  animation: fadeUp 0.7s 0.08s ease both;
}
.headline-accent {
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 130px);
  letter-spacing: 0.03em;
  line-height: 0.90;
  color: var(--accent);
  animation: fadeUp 0.7s 0.13s ease both;
}
.headline-ghost {
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 130px);
  letter-spacing: 0.03em;
  line-height: 0.90;
  -webkit-text-stroke: 2px rgba(0,25,49,0.14);
  color: transparent;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.18s ease both;
}
.description {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.24s ease both;
}

.progress-block {
  margin-top: 44px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.37s ease both;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.progress-meta strong { color: var(--accent); font-weight: 500; }
.progress-track {
  height: 2px;
  background: rgba(0,25,49,0.10);
  border-radius: 2px;
}
.progress-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--accent2), #34CCFA);
  border-radius: 2px;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,176,246,0.55);
}

/* ── WHAT WE DO card ── */
.hero-right { animation: fadeUp 0.7s 0.22s ease both; }
.what-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 36px 32px;
  box-shadow: 0 2px 40px rgba(0,25,49,0.04);
}
.what-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.what-card-title {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.what-card-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.pillar-icon { font-size: 16px; margin-bottom: 6px; display: block; }
.pillar-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
}
.pillar-text {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

/* ── DIVIDER ── */
.section-divider {
  position: relative;
  z-index: 1;
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 52px;
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 80px 52px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.contact-title {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-title span { color: var(--accent); }
.contact-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 40px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; align-items: center; gap: 14px; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-info-text {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
}

/* form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 40px rgba(0,25,49,0.04);
}
.form-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-control {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: rgba(0,176,246,0.40);
  box-shadow: 0 0 0 3px rgba(0,176,246,0.10);
  background: #fff;
}
textarea.form-control {
  resize: vertical;
  min-height: 110px;
}
.form-select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1810' stroke-opacity='0.3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-select:focus {
  border-color: rgba(0,176,246,0.40);
  box-shadow: 0 0 0 3px rgba(0,176,246,0.10);
}
.submit-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 15px 24px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.submit-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,176,246,0.22);
}
.form-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success-icon { font-size: 44px; margin-bottom: 16px; }
.form-success-title {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  padding: 28px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(22px); }
  to   { opacity:1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .hero-right { display: none; }
  .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  header, .hero, .contact-section, footer, .section-divider { padding-left: 24px; padding-right: 24px; }
  .corner { display: none; }
  .notify-input { width: 190px; }
  .what-card, .contact-form { padding: 24px; }
}
