:root {
  --paper: #f7f4ed;
  --paper-2: #fffdf8;
  --ink: #171914;
  --muted: #6f7169;
  --line: rgba(23,25,20,.12);
  --line-strong: rgba(23,25,20,.2);
  --acid: #dfff36;
  --mint: #c9f7db;
  --amber: #f7bb45;
  --violet: #d9cffd;
  --danger: #a43b2a;
  --shadow: 0 28px 90px rgba(47,43,31,.12);
  --mono: "DM Mono", ui-monospace, monospace;
  --sans: "Manrope", Inter, system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; font-family: var(--sans); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
body::before { content:""; position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: .18; 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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E"); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.mono { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.nav { position: relative; z-index: 5; padding-top: 14px; }
.nav-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 12px 0 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,248,.82); backdrop-filter: blur(18px); box-shadow: 0 12px 40px rgba(38,35,24,.07); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 34px; height: 34px; }
.brand small { display: block; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 12px; font-weight: 600; }
.nav-links a:hover { color: var(--ink); }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--line); border-radius: 14px; padding: 0 17px; font-weight: 700; font-size: 13px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--on-inverse, #fff); background: var(--inverse, #171816); border-color: var(--inverse, #171816); box-shadow: 0 12px 28px rgba(23,25,20,.18); }
.button-light { background: white; }
.access { min-height: calc(100vh - 80px); padding: 62px 0 90px; position: relative; overflow: hidden; }
.access::before { content:""; position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(223,255,54,.38), transparent 68%); top: -320px; right: -220px; }
.access::after { content:""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(217,207,253,.48), transparent 69%); bottom: -330px; left: -260px; }
.access-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr); gap: 70px; align-items: start; }
.copy { padding-top: 44px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #2fba5d; box-shadow: 0 0 0 5px rgba(47,186,93,.12); animation: pulse 2.4s infinite; }
h1 { margin: 24px 0 21px; max-width: 650px; font-size: clamp(58px, 6.6vw, 92px); line-height: .91; letter-spacing: -.074em; }
h1 em { font-family: var(--serif); font-weight: 400; color: #61645c; }
.lead { margin: 0; max-width: 610px; color: #55584f; font-size: 18px; line-height: 1.65; letter-spacing: -.02em; }
.lead strong { color: var(--ink); }
.delivery { display: grid; gap: 10px; margin: 34px 0; }
.delivery-item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; }
.delivery-item i { width: 40px; height: 40px; border-radius: 13px; background: white; border: 1px solid var(--line); display: grid; place-items: center; font-style: normal; font-family: var(--mono); font-size: 10px; }
.delivery-item:nth-child(2) i { background: var(--mint); }
.delivery-item:nth-child(3) i { background: var(--violet); }
.delivery-item b { display: block; font-size: 13px; }
.delivery-item span { color: var(--muted); font-size: 11px; }
.counter { display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); color: var(--muted); font-size: 11px; }
.counter strong { color: var(--ink); }
