:root {
  --bg: #f4f3ef;
  --panel: #fbfaf7;
  --text: #111111;
  --muted: #8d8d89;
  --line: #d9d8d2;
  --accent: #b9ff22;
  --accent-strong: #9fea00;
  --shadow: 0 28px 70px rgba(18, 18, 16, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 38%, rgba(255,255,255,.95), transparent 36%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { text-decoration: none; display: inline-flex; flex-direction: column; gap: 4px; }
.brand-name { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.brand-subtitle { font-size: 12px; color: #aaa9a4; }
.contact-top {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .11em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  min-height: calc(100vh - 148px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
  padding: 64px 0 76px;
}
.hero-copy { position: relative; z-index: 4; max-width: 690px; }
.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 38px;
  color: #969690;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
}
.eyebrow-dot { width: 9px; height: 9px; background: var(--accent); display: inline-block; }
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.1vw, 106px);
  line-height: .92;
  letter-spacing: -.072em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 span { position: relative; }
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 3px;
  bottom: 3px;
  height: 10px;
  background: var(--accent);
  z-index: -1;
}
.lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.primary-btn,
.ghost-btn {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .2s ease;
}
.primary-btn { border: 1px solid var(--accent); background: var(--accent); cursor: pointer; }
.primary-btn:hover { background: var(--accent-strong); border-color: var(--accent-strong); transform: translateY(-2px); }
.ghost-btn { border: 1px solid #bbb9b3; background: rgba(255,255,255,.18); }
.ghost-btn:hover { background: #fff; transform: translateY(-2px); }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: #999894;
  font-size: 12px;
  font-weight: 600;
}
.meta-row i { width: 1px; height: 22px; background: #c7c6c0; }

.hero-visual {
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb { position: absolute; border-radius: 50%; filter: blur(10px); }
.orb-a { width: 480px; height: 480px; background: rgba(255,255,255,.78); top: 7%; right: 5%; }
.orb-b { width: 240px; height: 240px; background: rgba(185,255,34,.11); bottom: 6%; left: 6%; }
.browser-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(201,200,194,.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.card-main {
  width: min(720px, 92%);
  border-radius: 14px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.browser-bar {
  height: 48px;
  border-bottom: 1px solid #ecebe7;
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  align-items: center;
  padding: 0 16px;
}
.browser-dots { display: flex; gap: 7px; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d5d4ce; }
.browser-address { justify-self: center; font-size: 11px; color: #aaa9a4; }
.browser-content { padding: 26px 28px 30px; min-height: 390px; }
.mock-nav { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.mock-nav div { display: flex; gap: 14px; }
.mock-nav div span { width: 38px; height: 4px; border-radius: 99px; background: #e4e3df; }
.mock-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center; min-height: 300px; margin-top: 28px; }
.mock-grid small { color: #9b9a95; letter-spacing: .12em; font-size: 10px; font-weight: 700; }
.mock-grid h2 { font-size: clamp(29px, 3vw, 52px); line-height: .98; letter-spacing: -.055em; margin: 14px 0; }
.mock-grid p { color: #9b9a95; font-size: 12px; line-height: 1.6; max-width: 240px; }
.mock-art {
  min-height: 260px;
  position: relative;
  background: linear-gradient(145deg, #efeee9, #faf9f6);
  overflow: hidden;
}
.shape { position: absolute; border-radius: 2px; }
.shape-1 { width: 62%; height: 74%; right: -4%; top: 22%; background: linear-gradient(160deg, #222, #4d4d4a); transform: skewY(-8deg); }
.shape-2 { width: 36%; height: 62%; left: 8%; top: 30%; background: #d4c8b4; transform: skewY(11deg); }
.shape-3 { width: 120px; height: 120px; right: 16%; top: 9%; border-radius: 50%; background: var(--accent); opacity: .82; }
.floating-card { position: absolute; z-index: 3; background: rgba(255,255,255,.94); border: 1px solid #dddbd5; box-shadow: 0 24px 60px rgba(18,18,16,.13); backdrop-filter: blur(14px); }
.status-card { left: 1%; bottom: 2%; width: 330px; padding: 22px; border-radius: 12px; }
.status-top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #8e8d88; }
.status-top strong { color: var(--text); font-size: 19px; }
.progress { height: 8px; margin: 14px 0 18px; background: #efeee9; overflow: hidden; border-radius: 99px; }
.progress span { display: block; width: 82%; height: 100%; background: var(--accent); }
.status-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.status-card li { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; color: #777670; }
.status-card b { font-weight: 600; color: #aaa9a4; }
.status-card li.active b { color: #111; }
.note-card { right: 0; top: 8%; width: 250px; padding: 22px; border-radius: 12px; transform: rotate(2deg); }
.note-kicker { display: inline-block; color: #8d8c87; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.note-card strong { display: block; font-size: 22px; letter-spacing: -.04em; }
.note-card p { color: #999894; font-size: 12px; line-height: 1.55; margin: 8px 0 0; }

.site-footer {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 52px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a2a19c;
  font-size: 11px;
}

.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: .24s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15,15,14,.42); backdrop-filter: blur(8px); }
.modal-panel {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  background: #f8f7f3;
  border: 1px solid #d6d5cf;
  box-shadow: 0 34px 100px rgba(0,0,0,.2);
  padding: 38px;
  transform: translateY(18px) scale(.98);
  transition: .24s ease;
}
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 30px; line-height: 1; cursor: pointer; color: #888782; }
.modal-kicker { font-size: 10px; color: #999894; font-weight: 800; letter-spacing: .14em; margin-bottom: 13px; }
.modal h2 { margin: 0; font-size: clamp(30px, 5vw, 48px); line-height: 1; letter-spacing: -.05em; }
.modal p { margin: 16px 0 24px; color: #8c8b86; font-size: 14px; line-height: 1.55; }
.modal code { color: #55544f; background: #ecebe6; padding: 2px 5px; }
.contact-list { display: grid; gap: 10px; }
.contact-item {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid #d9d8d2;
  background: rgba(255,255,255,.65);
  text-decoration: none;
  transition: .18s ease;
}
.contact-item:hover { border-color: #b8b7b1; transform: translateX(4px); background: #fff; }
.contact-left { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid #d7d6d0; font-weight: 800; font-size: 13px; background: #f5f4f0;
}
.contact-name { font-weight: 700; font-size: 14px; }
.contact-label { color: #aaa9a4; font-size: 11px; margin-top: 3px; }
.contact-arrow { font-size: 18px; }
.contact-footnote { margin-top: 20px; color: #aaa9a4; font-size: 11px; }
.contact-footnote a { text-underline-offset: 3px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 520px; }
  .card-main { width: min(760px, 94%); }
  .note-card { right: 2%; }
  .status-card { left: 2%; }
}
@media (max-width: 720px) {
  .site-header, .hero, .site-footer { width: min(100% - 32px, 1440px); }
  .site-header { min-height: 78px; }
  .brand-name { font-size: 15px; }
  .brand-subtitle { font-size: 10px; }
  .contact-top { font-size: 10px; }
  .hero { min-height: auto; gap: 30px; padding: 44px 0 48px; }
  .eyebrow { margin-bottom: 25px; }
  .hero h1 { font-size: clamp(47px, 15vw, 74px); }
  .lead { margin-top: 26px; font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary-btn, .ghost-btn { width: 100%; }
  .meta-row { align-items: flex-start; gap: 10px 14px; }
  .meta-row i { display: none; }
  .hero-visual { min-height: 430px; margin-top: 2px; }
  .card-main { width: 100%; transform: none; }
  .browser-content { padding: 20px; min-height: 330px; }
  .mock-grid { grid-template-columns: 1fr; min-height: 260px; }
  .mock-art { min-height: 140px; }
  .mock-grid h2 { font-size: 36px; }
  .note-card { display: none; }
  .status-card { left: auto; right: 10px; bottom: -18px; width: min(310px, 88%); }
  .site-footer { min-height: 74px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
  .modal-panel { padding: 32px 20px 22px; }
}
