:root {
    --ink: #000;
    --paper: #ebebeb;
    --paper-soft: #f2f2f2;
    --white: #fff;
    --ink-60: #5a5a5a;
    --ink-40: #9a9a9a;
    --ink-20: #c9c9c9;
    --ink-10: #dcdcdc;
    --font: 'General Sans', 'Söhne', 'Aktiv Grotesk', -apple-system, system-ui, sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 64px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand .mono {
    width: 36px;
    height: 36px;
}
.brand .word {
    font-size: 14px;
    letter-spacing: 0.32em;
    font-weight: 500;
}
.brand .word .sub {
    color: var(--ink-60);
    margin-left: 14px;
}
.nav-links {
    display: flex;
    gap: 40px;
    font-size: 15px;
}
.nav-links a {
    opacity: 0.85;
}
.nav-links a:hover {
    opacity: 1;
}

.hero {
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    padding: 24px 64px 48px;
    align-items: center;
}
.hero-left {
    padding-top: 8px;
    padding-bottom: 24px;
}
.eyebrow {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--ink-60);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid var(--ink-60);
    border-radius: 50%;
}

h1 {
    font-size: clamp(56px, 7.4vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 400;
}
h1 em {
    font-style: italic;
    font-weight: 500;
}
.tagline {
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink-60);
    max-width: 540px;
}
.tagline b {
    color: var(--ink);
    font-weight: 500;
}

.form {
    margin-top: 40px;
    background: var(--white);
    border: 1px solid var(--ink-20);
    padding: 14px 14px 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 560px;
}
.form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 18px;
    color: var(--ink);
    padding: 14px 0;
}
.form input::placeholder {
    color: var(--ink-40);
}
.cta {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex: 0 0 56px;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cta:hover {
    transform: translateX(3px);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--ink-60);
    align-items: center;
    flex-wrap: wrap;
}
.dot-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    padding: 6px 0;
    font-size: 13px;
}
.dot-link::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    border-radius: 50%;
}
.dot-link:hover {
    color: var(--ink);
}

.hero-right {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imagery {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--paper-soft);
    overflow: hidden;
}
.imagery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(0, 0, 0, 0.035) 14px 15px);
    pointer-events: none;
}
.imagery .label {
    position: absolute;
    left: 20px;
    bottom: 16px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 11px;
    color: var(--ink-60);
    letter-spacing: 0.04em;
    z-index: 5;
}

/* H1 — "meet." giant glyph + pearl + tube */
.h-meet .glyph {
    position: absolute;
    font-size: 480px;
    line-height: 0.78;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.04em;
    top: -20px;
    left: -20px;
    user-select: none;
}
.h-meet .pearl {
    position: absolute;
    right: 60px;
    top: 140px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff, #d8d8d8 55%, #1a1a1a 95%);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.18),
        inset -10px -16px 30px rgba(0, 0, 0, 0.35);
}
.h-meet .tube {
    position: absolute;
    right: -40px;
    bottom: 80px;
    width: 340px;
    height: 80px;
    border-radius: 80px;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6), transparent 70%),
        repeating-radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.6) 0 1px, transparent 1px 3px);
    transform: rotate(-18deg);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* H2 — outlined "hello." + tube arc + scattered dots */
.h-hello .glyph {
    position: absolute;
    font-size: 300px;
    line-height: 0.78;
    letter-spacing: -0.04em;
    top: 90px;
    left: 30px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--ink);
    font-weight: 400;
}
.h-hello .arc {
    position: absolute;
    left: -10%;
    top: 55%;
    width: 130%;
    height: 80px;
    border-radius: 80px;
    transform: rotate(-8deg);
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.04), transparent 70%),
        repeating-radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.55) 0 1px, transparent 1px 4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.h-hello .dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff, #cdcdcd 55%, #0e0e0e 95%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.h-hello .d1 {
    width: 64px;
    height: 64px;
    right: 80px;
    top: 60px;
}
.h-hello .d2 {
    width: 36px;
    height: 36px;
    right: 200px;
    bottom: 120px;
}
.h-hello .d3 {
    width: 22px;
    height: 22px;
    left: 60px;
    bottom: 60px;
}

/* H3 — monogram poster with grit */
.h-mono {
    background: var(--ink) !important;
}
.h-mono::before {
    background:
        radial-gradient(1.2px 1.2px at 12% 18%, #fff 100%, transparent),
        radial-gradient(1px 1px at 80% 30%, #fff 100%, transparent),
        radial-gradient(1.4px 1.4px at 60% 70%, #fff 100%, transparent),
        radial-gradient(0.8px 0.8px at 25% 80%, #fff 100%, transparent),
        radial-gradient(1px 1px at 90% 65%, #fff 100%, transparent),
        radial-gradient(0.8px 0.8px at 45% 22%, #fff 100%, transparent),
        radial-gradient(1px 1px at 70% 12%, #fff 100%, transparent);
    opacity: 0.6;
}
.h-mono .label {
    color: rgba(255, 255, 255, 0.4);
}
.h-mono svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
}
.h-mono .word {
    position: absolute;
    left: 24px;
    top: 24px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.32em;
    font-weight: 500;
}

/* Plate */
.plate {
    background: var(--ink);
    color: var(--white);
    margin: 0 64px 48px;
    padding: 64px;
    text-align: center;
}
.plate p {
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.45;
    max-width: 880px;
    margin: 0 auto;
}
.services {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
    color: var(--white);
    font-size: 15px;
}
.services span {
    display: flex;
    align-items: center;
    gap: 24px;
}
.services span:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
}

footer {
    padding: 24px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-60);
    font-size: 13px;
}
footer a {
    color: var(--ink);
}

.branding {
    display: 'flex';
    flex-direction: 'row';
    gap: 1;
    justify-content: center;
    align-items: center;
}
