/* ========================================
   Tyler Perleberg — Executive Portfolio
   Palantir / OpenAI / Anthropic Aesthetic
   ======================================== */

:root {
    --bg-primary: #050507;
    --bg-secondary: #0a0a0f;
    --bg-card: #0f0f16;
    --bg-card-hover: #141420;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #f0f0f5;
    --text-secondary: #8a8a9a;
    --text-muted: #555566;
    --accent: #6c5ce7;
    --accent-bright: #a78bfa;
    --accent-glow: rgba(108, 92, 231, 0.15);
    --gradient-accent: linear-gradient(135deg, #6c5ce7, #a78bfa);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo-img {
    height: 36px;
    width: auto;
    transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(167, 139, 250, 0.04) 0%, transparent 50%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-bright);
    background: rgba(108, 92, 231, 0.06);
    margin-bottom: 40px;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-name-line { display: block; }
.hero-title {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.title-accent {
    color: var(--accent-bright);
    font-weight: 500;
}
.hero-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.35);
}
.btn-outline {
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--accent-glow);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-text {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   Company Banner
   ======================================== */
.banner-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    overflow: hidden;
}
.banner-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.banner-track {
    display: flex;
    width: max-content;
    animation: banner-scroll 60s linear infinite;
}
.banner-track:hover { animation-play-state: paused; }
.banner-slide {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.banner-company {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}
.banner-company:hover { color: var(--text-primary); }
.banner-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}
@keyframes banner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Section Shared
   ======================================== */
.section { padding: 120px 0; }
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 16px;
}
.section-label.center { text-align: center; }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 48px;
}
.section-title.center { text-align: center; }

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s;
}
.image-frame:hover img { filter: grayscale(0%); }
.image-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    pointer-events: none;
}
.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.company-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}
.logo-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ========================================
   Impact Stats
   ======================================== */
.impact { background: var(--bg-secondary); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    text-align: center;
    transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.stat-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   Leadership Cards
   ======================================== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.leadership-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    transition: border-color 0.4s, transform 0.4s;
}
.leadership-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent-bright);
    margin-bottom: 24px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.card-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Experience Timeline
   ======================================== */
.experience { background: var(--bg-secondary); }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
}
.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    flex-shrink: 0;
    position: relative;
}
.marker-dot {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}
.timeline-item:first-child .marker-dot {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}
.timeline-content { flex: 1; padding-bottom: 8px; }
.timeline-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.timeline-role {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}
.timeline-company {
    font-size: 15px;
    color: var(--accent-bright);
    font-weight: 500;
    margin-bottom: 12px;
}
.timeline-location { color: var(--text-muted); font-weight: 400; }
.timeline-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.timeline-bullets {
    list-style: none;
    padding: 0;
}
.timeline-bullets li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}
.timeline-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========================================
   Expertise
   ======================================== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.expertise-category {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
}
.expertise-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.3s;
}
.tag:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}
.tag.accent {
    border-color: rgba(108, 92, 231, 0.3);
    color: var(--accent-bright);
    background: var(--accent-glow);
}

/* ========================================
   Education
   ======================================== */
.education { padding: 0 0 120px; }
.education-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
}
.edu-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent-bright);
    flex-shrink: 0;
}
.edu-icon svg { width: 24px; height: 24px; }
.edu-school {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}
.edu-info {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Contact
   ======================================== */
.contact { background: var(--bg-secondary); }
.contact-content { max-width: 700px; margin: 0 auto; }
.contact-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}
.contact-text.center { text-align: center; }
.contact-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.contact-card svg {
    width: 28px;
    height: 28px;
    color: var(--accent-bright);
}
.contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-card-value {
    font-size: 14px;
    color: var(--text-secondary);
    word-break: break-all;
}
.contact-email-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    margin-top: 16px;
    transition: border-color 0.3s, transform 0.3s;
}
.contact-email-bar:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.contact-email-bar svg {
    width: 28px;
    height: 28px;
    color: var(--accent-bright);
    flex-shrink: 0;
}
.contact-email-value {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo-img {
    height: 28px;
    opacity: 0.5;
}
.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   Pitch Page — Highlights Row
   ======================================== */
.pitch-highlights {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.pitch-highlight { text-align: center; flex: 1; }
.pitch-highlight-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.pitch-highlight-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ========================================
   Pitch Page — Card Accent & Stat
   ======================================== */
.card-accent-top {
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-bottom: 24px;
}
.card-stat {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.card-company {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ========================================
   Pitch Page — Simplus Bar
   ======================================== */
.simplus-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 16px;
    background: var(--accent-glow);
    margin-top: 48px;
}
.simplus-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.15);
    color: var(--accent-bright);
    flex-shrink: 0;
}
.simplus-icon svg { width: 24px; height: 24px; }
.simplus-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-bright);
}
.simplus-info {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Pitch Page — Vision Grid
   ======================================== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.vision-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    transition: border-color 0.4s, transform 0.4s;
}
.vision-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.vision-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.vision-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.vision-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Salesforce section bg */
.salesforce-section { background: var(--bg-secondary); }

/* ========================================
   Reveal Animation
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 7, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: right 0.4s var(--ease);
        border-left: 1px solid var(--border);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

    .section { padding: 80px 0; }
    .hero-content { padding: 100px 20px 60px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-card { padding: 28px 20px; }
    .stat-number { font-size: 36px; }
    .expertise-grid { grid-template-columns: 1fr; }
    .contact-links { grid-template-columns: 1fr 1fr; }
    .contact-email-bar { padding: 24px; gap: 16px; flex-direction: column; text-align: center; }
    .timeline::before { left: 11px; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .education-bar { flex-direction: column; text-align: center; }
    .pitch-highlights { flex-direction: column; gap: 20px; }
    .simplus-bar { flex-direction: column; text-align: center; padding: 24px; }
    .card-stat { font-size: 32px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-name { font-size: 48px; }
    .banner-company { font-size: 13px; padding: 0 14px; }
}
