/* ============================================================
   p9r.xyz — blobitecture meets frutiger-aero
   Palette: #f5f5f5 #a8edea #fed6e3 #b8c6db #2d3748 #718096 #feebc8 #c6f6d5
   Fonts:   Poppins (display/labels), Nunito Sans (body)
   ============================================================ */

:root {
    --space-light: #f5f5f5;
    --mint-aero: #a8edea;
    --rose-soft: #fed6e3;
    --cloud-blue: #b8c6db;
    --deep-ink: #2d3748;
    --mist-gray: #718096;
    --peach-glow: #feebc8;
    --leaf-mint: #c6f6d5;

    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-tinted-mint: 0 24px 70px rgba(168, 237, 234, 0.35);
    --shadow-tinted-rose: 0 24px 70px rgba(254, 214, 227, 0.4);
    --shadow-tinted-peach: 0 24px 70px rgba(254, 235, 200, 0.4);
    --shadow-tinted-leaf: 0 24px 70px rgba(198, 246, 213, 0.35);
    --shadow-tinted-cloud: 0 24px 70px rgba(184, 198, 219, 0.35);

    --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;
    --radius-blob-alt: 70% 30% 30% 70% / 70% 70% 30% 30%;
    --radius-container: 24px;

    --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--deep-ink);
    background: var(--space-light);
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* gentle moving wash so the background never looks static */
body::before {
    content: "";
    position: fixed;
    inset: -10%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(168, 237, 234, 0.18), transparent 55%),
        radial-gradient(circle at 82% 12%, rgba(254, 214, 227, 0.18), transparent 55%),
        radial-gradient(circle at 70% 85%, rgba(254, 235, 200, 0.18), transparent 55%),
        radial-gradient(circle at 12% 78%, rgba(184, 198, 219, 0.18), transparent 55%);
    animation: wash 24s ease-in-out infinite alternate;
}

@keyframes wash {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(2%, -1%, 0) scale(1.04); }
}

/* ============================================================
   Atmospheric gradient mesh spots
   ============================================================ */
.atmosphere {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.85;
    will-change: transform;
}

.spot-1 {
    width: 360px; height: 360px;
    top: 6%; left: -6%;
    background: radial-gradient(circle, rgba(168, 237, 234, 0.25), transparent 70%);
    animation: drift1 18s ease-in-out infinite alternate;
}
.spot-2 {
    width: 300px; height: 300px;
    top: 18%; right: -4%;
    background: radial-gradient(circle, rgba(254, 214, 227, 0.22), transparent 70%);
    animation: drift2 22s ease-in-out infinite alternate;
}
.spot-3 {
    width: 280px; height: 280px;
    top: 48%; left: 10%;
    background: radial-gradient(circle, rgba(254, 235, 200, 0.22), transparent 70%);
    animation: drift1 20s ease-in-out infinite alternate-reverse;
}
.spot-4 {
    width: 340px; height: 340px;
    top: 62%; right: 4%;
    background: radial-gradient(circle, rgba(198, 246, 213, 0.22), transparent 70%);
    animation: drift2 24s ease-in-out infinite alternate;
}
.spot-5 {
    width: 260px; height: 260px;
    top: 88%; left: 38%;
    background: radial-gradient(circle, rgba(184, 198, 219, 0.22), transparent 70%);
    animation: drift1 26s ease-in-out infinite alternate;
}
.spot-6 {
    width: 220px; height: 220px;
    top: 30%; left: 46%;
    background: radial-gradient(circle, rgba(168, 237, 234, 0.16), transparent 70%);
    animation: drift2 19s ease-in-out infinite alternate-reverse;
}

@keyframes drift1 {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(40px, -30px, 0) scale(1.1); }
}
@keyframes drift2 {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-50px, 40px, 0) scale(1.08); }
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px clamp(24px, 5vw, 64px) 0;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--deep-ink);
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-blob);
    background: linear-gradient(135deg, var(--mint-aero), var(--rose-soft));
    box-shadow: 0 8px 22px rgba(168, 237, 234, 0.45);
    animation: morph 10s ease-in-out infinite, float 6s ease-in-out infinite;
}

.brand-name {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 22px);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mist-gray);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    transition: color 0.3s ease, background 0.4s ease, transform 0.4s ease;
}

.nav-link:hover {
    color: var(--deep-ink);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.nav-link--cta {
    color: var(--deep-ink);
    background: linear-gradient(135deg, var(--mint-aero), var(--rose-soft));
    box-shadow: 0 12px 30px rgba(168, 237, 234, 0.4);
}

.nav-link--cta:hover {
    background: linear-gradient(135deg, var(--rose-soft), var(--peach-glow));
    transform: translateY(-3px);
}

/* ============================================================
   Hero — Blob entry
   ============================================================ */
.hero {
    position: relative;
    z-index: 4;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(40px, 8vw, 90px) clamp(24px, 5vw, 64px);
    text-align: center;
}

.hero-blob {
    position: relative;
    width: clamp(320px, 64vw, 720px);
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-blob);
    background: linear-gradient(135deg, var(--mint-aero), var(--rose-soft));
    box-shadow: 0 40px 100px rgba(168, 237, 234, 0.4),
                inset 0 -30px 80px rgba(255, 255, 255, 0.4);
    animation: morph 10s ease-in-out infinite, float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform, border-radius;
}

.hero-blob::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 12%;
    width: 32%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
    filter: blur(2px);
    pointer-events: none;
}

.hero-blob-inner {
    width: 78%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--deep-ink);
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.7);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: rgba(45, 55, 72, 0.78);
    margin: 0;
    max-width: 38ch;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    color: rgba(45, 55, 72, 0.6);
    letter-spacing: 0.04em;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--deep-ink);
    opacity: 0.4;
}

/* orbital bubbles around the hero blob */
.hero-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit-bubble {
    position: absolute;
    border-radius: var(--radius-blob);
    background: linear-gradient(135deg, var(--mint-aero), var(--peach-glow));
    box-shadow: var(--shadow-tinted-mint);
}

.bubble-a {
    width: 90px; height: 90px;
    top: 14%; left: 8%;
    background: linear-gradient(135deg, var(--peach-glow), var(--rose-soft));
    animation: morph 12s ease-in-out infinite, float 7s ease-in-out infinite;
}
.bubble-b {
    width: 60px; height: 60px;
    top: 28%; right: 10%;
    background: linear-gradient(225deg, var(--mint-aero), var(--leaf-mint));
    animation: morph-alt 14s ease-in-out infinite, float 8s ease-in-out infinite reverse;
}
.bubble-c {
    width: 110px; height: 110px;
    bottom: 14%; right: 6%;
    background: linear-gradient(315deg, var(--cloud-blue), var(--rose-soft));
    animation: morph 13s ease-in-out infinite, float 9s ease-in-out infinite;
}
.bubble-d {
    width: 70px; height: 70px;
    bottom: 18%; left: 10%;
    background: linear-gradient(135deg, var(--leaf-mint), var(--mint-aero));
    animation: morph-alt 11s ease-in-out infinite, float 6.5s ease-in-out infinite reverse;
}

.scroll-cue {
    margin-top: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mist-gray);
}

.scroll-cue-arrow {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--mist-gray));
    animation: cue 2.4s ease-in-out infinite;
}

@keyframes cue {
    0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
    50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ============================================================
   Core morph + float animations
   ============================================================ */
@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25%      { border-radius: 50% 50% 60% 40% / 60% 30% 70% 40%; }
    50%      { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    75%      { border-radius: 40% 60% 50% 50% / 30% 60% 40% 70%; }
}

@keyframes morph-alt {
    0%, 100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
    50%      { border-radius: 30% 60% 70% 40% / 60% 30% 70% 40%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ============================================================
   Flow — S-curve floating sections
   ============================================================ */
.flow {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 9vw, 120px);
    padding: clamp(40px, 7vw, 90px) clamp(24px, 5vw, 80px) clamp(80px, 10vw, 140px);
    max-width: 1320px;
    margin: 0 auto;
}

.block {
    position: relative;
    border-radius: var(--radius-container);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-soft);
    width: clamp(280px, 78%, 760px);
    color: var(--deep-ink);
    backdrop-filter: blur(6px);
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.block.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.block.is-visible.is-floating {
    animation: float 8s ease-in-out infinite 0.4s;
}

/* S-curve placement */
.block--left  { align-self: flex-start; margin-left: clamp(0px, 4vw, 60px); }
.block--right { align-self: flex-end;   margin-right: clamp(0px, 4vw, 60px); }

/* Alternating gradient directions per spec */
.block[data-grad="mint"] {
    background: linear-gradient(135deg, var(--mint-aero), var(--leaf-mint));
    box-shadow: var(--shadow-tinted-mint);
}
.block[data-grad="rose"] {
    background: linear-gradient(225deg, var(--rose-soft), var(--peach-glow));
    box-shadow: var(--shadow-tinted-rose);
}
.block[data-grad="cloud"] {
    background: linear-gradient(315deg, var(--cloud-blue), var(--mint-aero));
    box-shadow: var(--shadow-tinted-cloud);
}
.block[data-grad="peach"] {
    background: linear-gradient(135deg, var(--peach-glow), var(--rose-soft));
    box-shadow: var(--shadow-tinted-peach);
}
.block[data-grad="leaf"] {
    background: linear-gradient(225deg, var(--leaf-mint), var(--mint-aero));
    box-shadow: var(--shadow-tinted-leaf);
}

.block:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12),
                0 10px 40px rgba(168, 237, 234, 0.25);
}

.block-tag {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.65);
    margin-bottom: 14px;
}

.block-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--deep-ink);
    letter-spacing: -0.01em;
}

.block-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(45, 55, 72, 0.85);
    margin: 0 0 20px;
    max-width: 56ch;
}

.block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.block-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(45, 55, 72, 0.85);
}

.bullet {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-blob);
    background: linear-gradient(135deg, #ffffff, var(--mint-aero));
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
    animation: morph 9s ease-in-out infinite;
    flex-shrink: 0;
}

/* atom row — palette atoms */
.atom-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 1.6vw, 22px);
    margin-top: 8px;
}

.atom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    min-width: 140px;
}

.atom-dot {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-blob);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    animation: morph 8s ease-in-out infinite;
}

.atom--mint  { background: linear-gradient(135deg, var(--mint-aero), #ffffff); }
.atom--rose  { background: linear-gradient(135deg, var(--rose-soft), #ffffff); }
.atom--peach { background: linear-gradient(135deg, var(--peach-glow), #ffffff); }
.atom--leaf  { background: linear-gradient(135deg, var(--leaf-mint), #ffffff); }

.atom-label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--deep-ink);
}

.atom-hex {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: rgba(45, 55, 72, 0.6);
}

/* object grid */
.object-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 2vw, 24px);
    margin-top: 6px;
}

.object-card {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 22px;
    padding: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.object-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(168, 237, 234, 0.3);
}

.object-blob {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-blob);
    margin-bottom: 16px;
    box-shadow: var(--shadow-tinted-mint);
    animation: morph 10s ease-in-out infinite, float 6s ease-in-out infinite;
}

.object-blob--1 { background: linear-gradient(135deg, var(--mint-aero), var(--rose-soft)); }
.object-blob--2 { background: linear-gradient(225deg, var(--peach-glow), var(--mint-aero)); animation-delay: -3s; }
.object-blob--3 { background: linear-gradient(315deg, var(--rose-soft), var(--leaf-mint)); animation-delay: -6s; }

.object-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--deep-ink);
}

.object-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(45, 55, 72, 0.78);
    margin: 0;
}

/* manifesto */
.manifesto-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.point-num {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-ink);
    min-width: 28px;
}

.point p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: rgba(45, 55, 72, 0.85);
    line-height: 1.6;
}

/* orbit log */
.orbit-log {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orbit-item {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    gap: 18px;
    align-items: baseline;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, background 0.4s ease;
}

.orbit-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.7);
}

.orbit-when {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(45, 55, 72, 0.6);
    text-transform: uppercase;
}

.orbit-what {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.98rem;
    color: rgba(45, 55, 72, 0.88);
    line-height: 1.55;
}

/* ============================================================
   Landing pad (footer)
   ============================================================ */
.landing {
    position: relative;
    z-index: 4;
    margin-top: clamp(60px, 8vw, 120px);
    padding: clamp(50px, 8vw, 110px) clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
    border-radius: 40px 40px 0 0;
    background: linear-gradient(0deg, var(--mint-aero) 0%, var(--rose-soft) 60%, rgba(254, 235, 200, 0.8) 100%);
    box-shadow: 0 -30px 90px rgba(168, 237, 234, 0.35);
    overflow: hidden;
}

.landing::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: var(--radius-blob);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
    filter: blur(20px);
    animation: morph 14s ease-in-out infinite, float 9s ease-in-out infinite;
    pointer-events: none;
}

.landing::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: var(--radius-blob-alt);
    background: radial-gradient(circle, rgba(254, 235, 200, 0.55), transparent 70%);
    filter: blur(20px);
    animation: morph-alt 16s ease-in-out infinite, float 8s ease-in-out infinite reverse;
    pointer-events: none;
}

.landing-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 48px);
}

.landing-eyebrow {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.7);
}

.landing-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.1;
    margin: 8px 0 10px;
    color: var(--deep-ink);
    letter-spacing: -0.02em;
}

.landing-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    color: rgba(45, 55, 72, 0.78);
    margin: 0;
    max-width: 50ch;
}

/* form */
.landing-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    padding: clamp(20px, 3vw, 32px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--wide {
    grid-column: 1 / -1;
}

.field-label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.65);
}

.field-input {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    color: var(--deep-ink);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: inset 0 2px 8px rgba(45, 55, 72, 0.06);
    outline: none;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    width: 100%;
}

.field-input::placeholder {
    color: rgba(113, 128, 150, 0.7);
}

.field-input:focus {
    box-shadow: inset 0 2px 8px rgba(45, 55, 72, 0.06),
                0 0 0 4px rgba(168, 237, 234, 0.4);
}

.field-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

.signal-button {
    grid-column: 1 / -1;
    position: relative;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-ink);
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mint-aero), var(--rose-soft));
    box-shadow: 0 18px 40px rgba(168, 237, 234, 0.45);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    justify-self: start;
    min-width: 180px;
}

.signal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(168, 237, 234, 0.5);
}

.signal-button-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.04em;
}

.signal-button-blob {
    position: absolute;
    inset: -10%;
    background: linear-gradient(135deg, var(--peach-glow), var(--leaf-mint));
    border-radius: var(--radius-blob);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: morph 8s ease-in-out infinite;
}

.signal-button:hover .signal-button-blob {
    opacity: 0.85;
}

.form-status {
    grid-column: 1 / -1;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(45, 55, 72, 0.7);
    min-height: 1.4em;
}

.form-status.is-success {
    color: var(--deep-ink);
}

.form-status.is-error {
    color: #b04060;
}

/* meta cluster */
.landing-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.meta-cluster {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(8px);
}

.meta-key {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.6);
}

.meta-val {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-ink);
}

.landing-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    color: rgba(45, 55, 72, 0.7);
}

.landing-bottom a {
    color: var(--deep-ink);
    text-decoration: none;
    border-bottom: 1px dashed rgba(45, 55, 72, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.3s ease;
}

.landing-bottom a:hover {
    border-bottom-color: var(--deep-ink);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 760px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .nav {
        justify-content: flex-start;
    }
    .block--left,
    .block--right {
        align-self: stretch;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .landing-form {
        grid-template-columns: 1fr;
    }
    .orbit-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .hero-blob {
        width: 86vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
