/* ============================================
   The Competitor Organization - Styles
   Gradient: #E85A1A → #F57C1F → #FDB24A
   ============================================ */

:root {
    --orange-start: #E85A1A;
    --orange-mid: #F57C1F;
    --orange-end: #FDB24A;
    --gradient: linear-gradient(135deg, #E85A1A, #F57C1F, #FDB24A);
    --gradient-horizontal: linear-gradient(90deg, #E85A1A, #F57C1F, #FDB24A);
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --bg-surface: #16161f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-highlight: rgba(232, 90, 26, 0.3);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(232, 90, 26, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    white-space: nowrap;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-copy-ca {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-sm);
    background: rgba(232, 90, 26, 0.08);
    color: var(--orange-mid);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-ca:hover {
    background: rgba(232, 90, 26, 0.15);
    border-color: var(--orange-start);
}

.ca-notification {
    position: absolute;
    top: 100%;
    right: 24px;
    background: var(--gradient);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.ca-notification.show {
    opacity: 1;
    transform: translateY(8px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.hero-image-placeholder svg {
    width: 100%;
    height: auto;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 300px;
    height: 300px;
    background: var(--orange-start);
    opacity: 0.12;
    top: -50px;
    right: -50px;
}

.hero-glow-2 {
    width: 250px;
    height: 250px;
    background: var(--orange-end);
    opacity: 0.1;
    bottom: -40px;
    left: -40px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(232, 90, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 90, 26, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-highlight);
}

.btn-secondary:hover {
    background: rgba(232, 90, 26, 0.08);
    border-color: var(--orange-start);
    transform: translateY(-2px);
}

.btn-apply {
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-apply:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 90, 26, 0.3);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(232, 90, 26, 0.1);
    border: 1px solid var(--border-highlight);
    color: var(--orange-mid);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-tag-large {
    font-size: 1.7rem;
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About / Cards
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--bg-dark);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
}

/* Protection Section */
.protection-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.protection-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.protection-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.protection-icon {
    width: 120px;
    height: 120px;
}

.protection-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Founder Section
   ============================================ */
.ceo-section {
    padding: 120px 0;
    background: var(--bg-surface);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.ceo-image-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ceo-image-placeholder svg {
    width: 100%;
    height: auto;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.ceo-role {
    color: var(--orange-mid);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.ceo-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ceo-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-mid);
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.ceo-linkedin:hover {
    color: var(--orange-end);
}

/* ============================================
   Careers / Positions
   ============================================ */
.careers {
    padding: 120px 0;
    background: var(--bg-dark);
}

.positions-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.positions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.positions-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--gradient);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.positions-table-wrapper {
    overflow-x: auto;
}

.positions-table {
    width: 100%;
    border-collapse: collapse;
}

.positions-table th {
    text-align: left;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.positions-table td {
    padding: 18px 32px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.positions-table td strong {
    color: var(--text-primary);
}

.positions-table tr:last-child td {
    border-bottom: none;
}

.positions-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-open {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-closed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   Portal
   ============================================ */
.portal {
    padding: 120px 0;
    background: var(--bg-surface);
}

.portal-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.portal-lookup {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.input:focus {
    border-color: var(--orange-mid);
}

.input::placeholder {
    color: var(--text-muted);
}

.status-display {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
}

.status-display .status-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.status-display .status-value {
    font-weight: 600;
    font-size: 1.05rem;
}

.status-display .status-pending {
    color: #f59e0b;
}

.status-display .status-approved {
    color: #22c55e;
}

.status-display .status-rejected {
    color: #ef4444;
}

/* Tweet Submission */
.tweet-submission {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.tweet-submission h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tweet-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tweet-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tweet-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tweet-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tweet-status {
    margin-top: 12px;
    font-size: 0.9rem;
}

/* ============================================
   Team Section
   ============================================ */
.team {
    padding: 120px 0;
    background: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-glow);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 2px solid var(--border-highlight);
    overflow: hidden;
    background: var(--bg-surface);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card-position {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.team-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--orange-mid);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.team-card-link:hover {
    color: var(--orange-end);
}

.team-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}

/* ============================================
   Public Records
   ============================================ */
.public-records {
    padding: 120px 0;
    background: var(--bg-surface);
}

.records-list {
    max-width: 800px;
    margin: 0 auto;
}

.records-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 40px 0;
}

.record-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.record-item:hover {
    border-color: var(--accent-primary);
}

.record-bullet {
    color: var(--accent-primary);
    font-size: 1.2rem;
    line-height: 1.5;
    flex-shrink: 0;
}

.record-content {
    flex: 1;
}

.record-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.record-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* ============================================
   Historian Portal
   ============================================ */
.historian-portal {
    padding: 80px 0 120px;
    background: var(--bg-dark);
}

.historian-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.historian-welcome {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    border-radius: 8px;
    text-align: center;
}

.historian-textarea {
    min-height: 80px;
    resize: vertical;
}

.historian-message {
    margin-top: 12px;
    font-size: 0.85rem;
    text-align: center;
}

.historian-message.error {
    color: #fca5a5;
}

.historian-message.success {
    color: #86efac;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.powered-by {
    font-weight: 500;
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group .input {
    width: 100%;
}

.form-message {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    color: #22c55e;
}

.form-message.error {
    color: #ef4444;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 360px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ceo-image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .protection-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .protection-icon {
        margin: 0 auto;
    }

    .positions-table th,
    .positions-table td {
        padding: 14px 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .portal-lookup {
        flex-direction: column;
    }

    .positions-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .btn-copy-ca {
        display: none;
    }
}
