/* =============================================================================
   GopherCon Israel 2026 — modern theme
   Palette: Go cyan/teal + Israeli-flag blue, on dark ink + bright surfaces
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */
:root {
    /* Brand */
    --go-cyan: #00add8;
    --go-cyan-light: #5dc9e2;
    --go-teal: #00758d;
    --go-teal-deep: #005368;
    --il-blue: #0038b8;
    --gold: #ffd43b;

    /* Ink / dark surfaces */
    --ink: #0b1b26;
    --ink-2: #0f2733;
    --ink-3: #14323f;

    /* Light surfaces */
    --surface: #f3f9fb;
    --surface-2: #ffffff;
    --surface-3: #e9f4f7;

    /* Text */
    --text: #14242d;
    --text-soft: #3c5a66;
    --text-mut: #6a8693;
    --on-dark: #eaf6fa;
    --on-dark-mut: #9fc2cf;

    --border: #e0ecef;
    --border-strong: #c9dde2;

    /* Type */
    --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 27, 38, 0.06);
    --shadow-md: 0 10px 30px rgba(11, 27, 38, 0.10);
    --shadow-lg: 0 24px 60px rgba(11, 27, 38, 0.16);
    --shadow-cyan: 0 16px 40px rgba(0, 173, 216, 0.28);

    /* Layout */
    --container: 1120px;
    --nav-h: 68px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

a {
    color: var(--go-teal);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

a:hover {
    color: var(--go-cyan);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.02em;
    font-weight: 700;
}

hr {
    display: none;
}

:focus-visible {
    outline: 3px solid var(--go-cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ----------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */
.wrapper {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.content {
    position: relative;
    z-index: 1;
    background: var(--surface);
    padding: clamp(48px, 7vw, 96px) 0 0;
}

.content section {
    scroll-margin-top: calc(var(--nav-h) + 20px);
}

.section-title {
    font-size: clamp(2rem, 1.2rem + 3.4vw, 3.25rem);
    margin-bottom: 0.7em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 5px;
    margin-top: 0.35em;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--go-cyan), var(--il-blue));
}

p {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
    line-height: 1.75;
    margin-bottom: 1.1em;
    color: var(--text-soft);
}

p:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 100;
    display: flex;
    align-items: center;
    background: rgba(11, 27, 38, 0.72);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#nav.scrolled {
    background: rgba(11, 27, 38, 0.92);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

#nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--il-blue), var(--go-cyan), var(--gold), var(--go-cyan), var(--il-blue));
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2px, 1.5vw, 10px);
    margin: 0 auto;
    max-width: var(--container);
    width: 100%;
    padding: 0 16px;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--on-dark-mut);
    border-radius: var(--r-sm);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--go-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #fff;
}

/* ----------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + clamp(48px, 9vw, 110px)) 0 clamp(56px, 9vw, 120px);
    background:
        radial-gradient(1100px 520px at 80% -10%, rgba(0, 173, 216, 0.30), transparent 60%),
        radial-gradient(900px 500px at 5% 10%, rgba(0, 56, 184, 0.28), transparent 55%),
        linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-3) 100%);
    color: var(--on-dark);
    isolation: isolate;
}

/* drifting glow */
.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: -1;
    background:
        radial-gradient(closest-side, rgba(93, 201, 226, 0.22), transparent),
        radial-gradient(closest-side, rgba(255, 212, 59, 0.12), transparent);
    background-repeat: no-repeat;
    background-position: 15% 80%, 85% 20%;
    background-size: 45% 45%, 38% 38%;
    animation: heroGlow 16s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    from { transform: translate3d(-3%, -2%, 0) scale(1); }
    to   { transform: translate3d(4%, 3%, 0) scale(1.12); }
}

/* subtle dotted grid */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 75%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: clamp(0.72rem, 0.66rem + 0.3vw, 0.85rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--on-dark);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    margin-bottom: clamp(20px, 3vw, 28px);
    backdrop-filter: blur(6px);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(255, 212, 59, 0.6);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 212, 59, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(255, 212, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 212, 59, 0); }
}

.logo-name {
    font-size: clamp(2.8rem, 1.4rem + 6.4vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.98;
    margin-bottom: clamp(14px, 2vw, 22px);
}

.logo-link {
    color: #fff;
    background: linear-gradient(120deg, #ffffff 0%, var(--go-cyan-light) 55%, var(--go-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-link:hover {
    color: #fff;
}

.flag-chip {
    font-size: 0.62em;
    -webkit-text-fill-color: initial;
    margin-right: 0.18em;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 0.85rem + 1.7vw, 2.05rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 18ch;
    margin: 0 auto clamp(14px, 1.8vw, 20px);
    text-wrap: balance;
}

.tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.98rem, 0.9rem + 0.55vw, 1.28rem);
    color: var(--on-dark-mut);
    max-width: 580px;
    margin: 0 auto clamp(28px, 4vw, 40px);
    letter-spacing: 0;
}

.tagline strong {
    color: var(--on-dark);
    font-weight: 600;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2vw, 18px);
    margin: 0 auto clamp(30px, 4vw, 44px);
    max-width: 460px;
}

.cd-unit {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    padding: clamp(12px, 2vw, 18px) 6px;
    backdrop-filter: blur(8px);
}

.cd-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 1rem + 2.6vw, 2.6rem);
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.cd-label {
    display: block;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--on-dark-mut);
}

/* CTAs */
.call-action-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.call-action-area .price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 6px;
}

.call-action-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

/* primary = first CTA */
.call-action-area .call-action-link:first-of-type {
    color: var(--ink);
    background: linear-gradient(135deg, var(--go-cyan-light), var(--go-cyan));
    box-shadow: var(--shadow-cyan);
}

.call-action-area .call-action-link:first-of-type:hover {
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(0, 173, 216, 0.42);
}

/* secondary CTAs = glass */
.call-action-link,
.btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-action-link:hover,
.btn:hover {
    color: #fff;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.call-action-link:active,
.btn:active {
    transform: translateY(0);
}

/* floating gopher */
.hero-gopher {
    position: absolute;
    right: clamp(-40px, -2vw, 24px);
    bottom: -10px;
    width: clamp(140px, 22vw, 280px);
    opacity: 0.9;
    z-index: 1;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-16px) rotate(2deg); }
}

/* wave divider into content */
.hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: clamp(40px, 6vw, 80px);
}

.github-link {
    display: none;
}

/* ----------------------------------------------------------------------------
   Section frame (generic card-ish band)
   ------------------------------------------------------------------------- */
.content section {
    margin-bottom: clamp(56px, 8vw, 104px);
}

.content section:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------------------
   Featured quote
   ------------------------------------------------------------------------- */
.quote-band {
    margin: 0 auto clamp(56px, 8vw, 104px);
    max-width: 880px;
}

.quote-card {
    position: relative;
    margin: 0;
    padding: clamp(28px, 4vw, 48px) clamp(26px, 4vw, 56px);
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
    border: 1px solid var(--border);
    border-left: 5px solid var(--go-cyan);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: clamp(-10px, -1vw, -4px);
    right: clamp(12px, 2vw, 18px);
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 11vw, 10rem);
    line-height: 1;
    color: var(--go-cyan);
    opacity: 0.12;
    pointer-events: none;
}

.quote-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.3rem, 0.95rem + 1.7vw, 2.1rem);
    line-height: 1.32;
    letter-spacing: -0.02em;
    color: var(--text);
    text-wrap: balance;
}

.quote-by {
    margin-top: clamp(20px, 3vw, 28px);
}

.quote-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
}

.quote-author:hover {
    color: var(--go-teal);
}

.quote-x {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    transition: transform 0.25s var(--ease);
}

.quote-author:hover .quote-x {
    transform: scale(1.08) rotate(-4deg);
}

.quote-x svg {
    width: 17px;
    height: 17px;
}

.quote-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    text-align: left;
}

.quote-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text);
}

.quote-handle {
    font-size: 0.86rem;
    color: var(--text-mut);
}

/* ----------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------- */
section.about {
    position: relative;
}

.about,
section.about > .section-title {
    position: relative;
    z-index: 1;
}

section.about .section-title {
    display: block;
    text-align: center;
}

section.about .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    gap: 22px;
}

section.about p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ----------------------------------------------------------------------------
   Location
   ------------------------------------------------------------------------- */
section.location .section-title {
    display: block;
    text-align: center;
}

section.location .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

section.location > p {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-mut);
    margin-bottom: 1.6em;
}

#map-canvas,
.location-area {
    margin: 0 auto !important;
    max-width: 960px;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-md);
    background: var(--surface-2);
}

.location-area iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

/* ----------------------------------------------------------------------------
   Team
   ------------------------------------------------------------------------- */
section.team .section-title {
    display: block;
    text-align: center;
}

section.team .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.flex-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(14px, 2vw, 24px);
    max-width: 1000px;
    margin: 0 auto;
}

.rounded-image-container {
    text-align: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 18px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.rounded-image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--go-cyan-light);
}

.round-image {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgba(0, 173, 216, 0.25), var(--shadow-md);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.rounded-image-container:hover .round-image {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px var(--go-cyan), var(--shadow-md);
}

.rounded-image-container .name {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text);
    margin: 16px 0 8px;
    line-height: 1.25;
}

.rounded-image-container .links {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.85rem;
    font-weight: 500;
}

.rounded-image-container .links a {
    color: var(--text-mut);
}

.rounded-image-container .links a:hover {
    color: var(--go-cyan);
}

/* ----------------------------------------------------------------------------
   Social / community
   ------------------------------------------------------------------------- */
section.social .section-title {
    display: block;
    text-align: center;
}

section.social .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.social-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(28px, 4vw, 44px);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(14px, 2vw, 20px);
    max-width: 760px;
    margin: 0 auto;
}

.social-card {
    --brand: var(--go-cyan);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    color: var(--text);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.social-card:hover {
    color: var(--text);
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 18px 40px color-mix(in srgb, var(--brand) 26%, transparent);
}

.social-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #fff;
    background: var(--brand);
    transition: transform 0.3s var(--ease);
}

.social-card:hover .social-icon {
    transform: scale(1.08) rotate(-4deg);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.3;
}

.social-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
}

.social-handle {
    font-size: 0.86rem;
    color: var(--text-mut);
}

.social-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    color: var(--text-mut);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}

.social-arrow svg {
    width: 18px;
    height: 18px;
    display: block;
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: none;
    color: var(--brand);
}

/* ---- Spread the word / share ---- */
.share-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 760px;
    margin: clamp(20px, 3vw, 28px) auto 0;
    padding: clamp(20px, 3vw, 30px);
    border-radius: var(--r-lg);
    color: var(--on-dark);
    background:
        radial-gradient(600px 240px at 100% 0%, rgba(255, 212, 59, 0.18), transparent 60%),
        linear-gradient(135deg, var(--go-teal) 0%, var(--go-cyan) 100%);
    box-shadow: var(--shadow-cyan);
}

.share-copy {
    min-width: 220px;
    flex: 1 1 240px;
}

.share-title {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.share-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    margin: 0;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.share-btn:hover {
    color: var(--go-teal);
    background: #fff;
    transform: translateY(-3px) scale(1.04);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn.share-native {
    width: auto;
    padding: 0 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    background: #fff;
    color: var(--go-teal);
    border-color: #fff;
}

/* copy button icon swap */
.s-copy .ic-check {
    display: none;
}

.s-copy.copied {
    color: var(--go-teal);
    background: #fff;
}

.s-copy.copied .ic-copy {
    display: none;
}

.s-copy.copied .ic-check {
    display: block;
}

/* toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 20px);
    z-index: 200;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    background: var(--ink);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* ----------------------------------------------------------------------------
   Sponsors / partners (kept for when re-enabled)
   ------------------------------------------------------------------------- */
.sponsors-group {
    text-align: center;
    margin-bottom: 40px;
}

.sponsor-item,
.partner-item {
    display: inline-block;
    margin: 12px;
}

.sponsor--link,
.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 130px;
    padding: 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.sponsor--link:hover,
.partner-link:hover {
    transform: translateY(-5px);
    border-color: var(--go-cyan-light);
    box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.footer {
    position: relative;
    margin-top: clamp(56px, 8vw, 100px);
    padding: clamp(48px, 6vw, 72px) 20px clamp(28px, 4vw, 40px);
    text-align: center;
    color: var(--on-dark);
    background:
        radial-gradient(800px 360px at 50% -20%, rgba(0, 173, 216, 0.22), transparent 60%),
        linear-gradient(180deg, var(--ink-2), var(--ink));
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--il-blue), var(--go-cyan), var(--gold), var(--go-cyan), var(--il-blue));
}

#footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(28px, 5vw, 64px);
    padding-bottom: 30px;
}

.footer-section {
    min-width: 160px;
}

.footer-section h1 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--on-dark-mut);
    margin-bottom: 16px;
}

.footer-section a {
    color: var(--on-dark);
}

.footer-section img {
    height: 28px;
    width: auto;
    margin: 0 6px;
    opacity: 0.85;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-section a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

#footer-coc img {
    height: 34px;
}

.footer-link {
    padding: 0 8px;
    color: var(--on-dark-mut);
}

.footer-link:not(#google-link) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#copyright p {
    color: var(--on-dark-mut);
    font-size: 0.85rem;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------------------- */
/* Only hide reveals when JS is available to bring them back. */
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}

.js .reveal.in {
    opacity: 1;
    transform: none;
}

/* ----------------------------------------------------------------------------
   Mobile
   ------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Compact inline nav — links stay visible, no hamburger */
    .nav-menu {
        gap: 2px;
        padding: 0 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        flex: 0 0 auto;
    }

    .nav-link {
        padding: 7px 10px;
        font-size: 0.84rem;
        white-space: nowrap;
    }

    .nav-link::after {
        left: 10px;
        right: 10px;
        bottom: 2px;
    }

    .hero-gopher {
        opacity: 0.35;
        width: clamp(120px, 36vw, 180px);
        right: -20px;
    }

    .countdown {
        max-width: 360px;
    }

    .rounded-image-container {
        padding: 20px 12px 18px;
    }

    .round-image {
        width: 104px;
        height: 104px;
    }

    .rounded-image-container .name {
        font-size: 1rem;
    }

    .call-action-area .call-action-link,
    .call-action-area .btn {
        width: 100%;
        max-width: 320px;
    }

    .call-action-area .price {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .cd-unit {
        padding: 10px 4px;
    }

    .cd-label {
        font-size: 0.58rem;
    }
}

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
