/* iBit — site público
   Visual: produto editorial, sem vibe-code */

:root {
    --ink: #0c1222;
    --ink-soft: #1a2436;
    --muted: #5b6577;
    --muted-soft: #8b93a3;
    --line: #e4e8ef;
    --line-strong: #d5dbe6;
    --paper: #f2f4f7;
    --paper-deep: #e8ecf2;
    --surface: #ffffff;
    --accent: #0f766e;
    --accent-hover: #0d5f59;
    --accent-soft: rgba(15, 118, 110, 0.1);
    --accent-ring: rgba(15, 118, 110, 0.22);
    --shadow-sm: 0 1px 2px rgba(12, 18, 34, 0.04);
    --shadow-md: 0 8px 24px rgba(12, 18, 34, 0.06);
    --shadow-lg: 0 24px 64px rgba(12, 18, 34, 0.12);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --radius: 14px;
    --radius-sm: 10px;
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --header-h: 68px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ——— Header ——— */
.header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--line);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-h);
    gap: 24px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
    opacity: 0.88;
}

.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.logo-placeholder img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-placeholder:empty {
    display: none;
}

.logo-placeholder:not(:empty) + .nav-brand-name {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 550;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-link:hover {
    transform: translateY(-1px);
}

/* ——— Hero ——— */
.hero {
    position: relative;
    min-height: min(860px, 100vh);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 64px) 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 12% 18%, rgba(15, 118, 110, 0.12), transparent 55%),
        radial-gradient(ellipse 70% 50% at 88% 12%, rgba(26, 36, 54, 0.08), transparent 50%),
        linear-gradient(180deg, #eef1f5 0%, #f7f8fa 48%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(12, 18, 34, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 18, 34, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -220px;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 52px rgba(15, 118, 110, 0.025),
        0 0 0 104px rgba(15, 118, 110, 0.018);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    gap: clamp(48px, 8vw, 96px);
    align-items: center;
}

.hero-content {
    position: relative;
    max-width: 640px;
    animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px 7px 9px;
    margin-bottom: 24px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.hero-kicker > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 5vw, 4.65rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.02;
    color: var(--ink-soft);
    margin-bottom: 18px;
    max-width: 12.5ch;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 38ch;
    margin-bottom: 36px;
    line-height: 1.55;
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    color: var(--muted-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-platforms span {
    position: relative;
}

.hero-platforms span + span::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    left: -11px;
    top: 50%;
    border-radius: 50%;
    background: var(--line-strong);
}

/* Product preview */
.hero-visual {
    position: relative;
    animation: visualIn 1s 0.15s var(--ease-out) both;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 14% -8% -12% 8%;
    background: rgba(15, 118, 110, 0.1);
    filter: blur(48px);
    border-radius: 50%;
}

@keyframes visualIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(12, 18, 34, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.hero-visual:hover .product-window {
    transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-4px);
    box-shadow: 0 30px 80px rgba(12, 18, 34, 0.15);
}

.product-window-bar {
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 248, 250, 0.8);
    color: var(--muted-soft);
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line-strong);
}

.window-dots i:first-child {
    background: var(--accent);
}

.product-window-body {
    padding: 24px;
}

.product-label {
    margin-bottom: 16px;
    color: var(--muted-soft);
    font-size: 0.6875rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.product-row-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    position: relative;
}

.product-row-icon::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1.5px solid var(--ink-soft);
    border-radius: 3px;
}

.product-row-icon--mobile::before {
    inset: 7px 12px;
    border-radius: 4px;
}

.product-row-icon--web::before {
    inset: 9px 7px 11px;
}

.product-row-icon--desktop::before {
    inset: 8px 6px 12px;
}

.product-row strong,
.product-row small {
    display: block;
}

.product-row strong {
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.product-row small {
    margin-top: 2px;
    color: var(--muted-soft);
    font-size: 0.6875rem;
}

.product-row em {
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 22px 13px 24px;
    background: var(--ink);
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease, color 0.2s ease;
    min-width: 140px;
    box-shadow: 0 8px 18px rgba(12, 18, 34, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -80%;
    bottom: -80%;
    left: -45%;
    width: 32%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(18deg) translateX(-220%);
    transition: transform 0.65s var(--ease-out);
}

.btn:hover::before {
    transform: rotate(18deg) translateX(560%);
}

.btn > span {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn:hover {
    background: var(--ink-soft);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(12, 18, 34, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    color: #fff !important;
}

.btn:active {
    transform: translateY(0) scale(0.98);
    color: #fff !important;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.66);
    color: var(--ink) !important;
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn.secondary:hover {
    background: var(--surface);
    border-color: var(--ink);
    color: var(--ink) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(12, 18, 34, 0.1);
}

.btn.secondary::before {
    background: linear-gradient(90deg, transparent, rgba(12, 18, 34, 0.05), transparent);
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ——— Sections ——— */
.apps,
.about,
.contact {
    padding: 104px 0;
}

.apps {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.about {
    background: var(--paper);
}

.contact {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 12px;
    text-align: left;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--muted);
    margin-bottom: 56px;
    max-width: 42ch;
    line-height: 1.55;
    text-align: left;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.section-head .section-subtitle {
    margin-bottom: 0;
}

.section-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 650;
    color: var(--accent);
    text-decoration: none;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.section-link:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s var(--ease-out);
}

.section-link:hover svg {
    transform: translateX(3px);
}

/* ——— Home app icons ——— */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 28px 24px;
    justify-items: start;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 164px;
    padding: 12px;
    margin: -12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    background: var(--surface);
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}

.app-icon {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ink);
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-out);
}

.app-card:hover .app-icon {
    box-shadow: 0 12px 30px rgba(12, 18, 34, 0.14);
    border-color: var(--line-strong);
    transform: scale(1.025);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.app-icon-initial {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.app-name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-category-label {
    font-size: 0.75rem;
    color: var(--muted-soft);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.app-image,
.app-content,
.app-category,
.app-description,
.app-tap-hint {
    display: none;
}

.app-card-clickable:active {
    transform: translateY(-2px) scale(0.98);
}

/* ——— About ——— */
.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text h3 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 32px 0 10px;
    font-size: 1.25rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p,
.about-text li {
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.65;
    font-size: 1rem;
}

.about-text ul {
    margin-left: 1.1rem;
    color: var(--muted);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    text-align: left;
    padding: 24px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.stat-item h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.stat-item p {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

/* ——— Contact ——— */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    margin-top: 8px;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-item strong {
    color: var(--muted-soft);
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--ink);
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: linear-gradient(180deg, #f7f8fa 0%, var(--paper) 100%);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: var(--surface);
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-out);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-ring);
    transform: translateY(-1px);
}

.contact-form .btn {
    width: 100%;
    margin-top: 4px;
    background: var(--accent);
}

.contact-form .btn:hover {
    background: var(--accent-hover);
}

/* ——— Footer ——— */
.footer {
    background: var(--ink);
    color: #e8ecf2;
    padding: 64px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.footer-section p {
    color: var(--muted-soft);
    margin-bottom: 8px;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--muted-soft);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: left;
    color: var(--muted-soft);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #c5ccd8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-visual {
        max-width: 600px;
    }

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        padding: 8px 8px;
        font-size: 0.875rem;
    }

    .hero {
        padding: calc(var(--header-h) + 48px) 0 72px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.75rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-layout {
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .apps,
    .about,
    .contact {
        padding: 72px 0;
    }

    .apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 24px 16px;
    }

    .app-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .contact-form {
        padding: 24px;
    }

    .btn-group {
        width: 100%;
    }

    .btn-group .btn {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .nav-brand-name {
        font-size: 1rem;
    }

    .hero-kicker {
        font-size: 0.67rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }

    .hero-platforms {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav {
        gap: 10px;
    }

    .nav-menu {
        margin-left: auto;
    }

    .nav-link {
        padding: 7px 6px;
        font-size: 0.8rem;
    }

    .nav-link:nth-child(3) {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11vw, 2.8rem);
        overflow-wrap: anywhere;
    }

    .hero-kicker {
        white-space: nowrap;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
        flex: none;
    }

    .hero-platforms {
        justify-content: center;
    }
}

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