/* ============================================================
   VKIT.CSS — V_kit custom styles (company + product + contact)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Share+Tech+Mono&display=swap');

/* ── CSS Variables ── */
:root {
    --accent: #00e5ff;
    --accent-dim: rgba(0, 229, 255, 0.15);
    --accent-border: rgba(0, 229, 255, 0.35);
    --red: #ff3b5c;
    --red-dim: rgba(255, 59, 92, 0.12);
    --white-80: rgba(255,255,255,0.80);
    --white-50: rgba(255,255,255,0.50);
    --white-25: rgba(255,255,255,0.25);
    --white-10: rgba(255,255,255,0.10);
    --white-06: rgba(255,255,255,0.06);
    --mono: 'Share Tech Mono', monospace;
}

/* ── Scrollable section override ── */
section.scrollable {
    overflow-y: auto;
    align-items: flex-start;
}

section.scrollable .section-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 100%;
}

/* ── HERO SECTION ── */
#home .section-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding-top: 100px;
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    animation: fade-in-up 0.6s 0.1s forwards;
}

.hero-eyebrow span {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 12px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.0;
    color: white;
    margin: 0 0 10px;
    opacity: 0;
    animation: fade-in-up 0.7s 0.2s forwards;
}

.hero-title .accent { color: var(--accent); }

.hero-subtitle {
    font-size: clamp(14px, 1.6vw, 19px);
    font-weight: 300;
    color: var(--white-50);
    max-width: 560px;
    line-height: 1.75;
    margin: 18px 0 40px;
    opacity: 0;
    animation: fade-in-up 0.7s 0.35s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-in-up 0.7s 0.48s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.22s ease;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,229,255,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--white-25);
    color: var(--white-80);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--white-06);
    cursor: pointer;
    transition: all 0.22s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-border);
    color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    opacity: 0;
    animation: fade-in-up 0.7s 0.6s forwards;
}

.hero-stat-num {
    font-family: var(--mono);
    font-size: 32px;
    color: white;
    line-height: 1;
}

.hero-stat-num .accent { color: var(--accent); }

.hero-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-25);
    margin-top: 6px;
}

/* ── ABOUT SECTION ── */
#about .section-inner {
    flex-direction: column;
    gap: 60px;
    padding-top: 120px;
    padding-bottom: 60px;
}

.about-header {
    width: 100%;
}

.section-label {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--white-50);
    font-weight: 300;
    max-width: 640px;
}

/* About grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
}

.about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    padding: 32px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.about-card:hover {
    border-color: var(--accent-border);
    background: var(--accent-dim);
}

.about-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--white-50);
    font-weight: 300;
    margin: 0;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.team-card {
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.team-card:hover {
    border-color: var(--white-25);
    transform: translateY(-4px);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dim), rgba(255,255,255,0.08));
    border: 1px solid var(--accent-border);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 17px;
    line-height: 1.7;
    color: var(--white-50);
    font-weight: 300;
    margin: 0;
}

/* ── PRODUCT SECTION ── */
#product .section-inner {
    flex-direction: column;
    gap: 60px;
    padding-top: 120px;
    padding-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.feature-card {
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.28s ease;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-card:hover {
    border-color: var(--accent-border);
    background: var(--accent-dim);
    transform: translateY(-3px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 16px;
    line-height: 1.72;
    color: var(--white-50);
    font-weight: 300;
    margin: 0 0 14px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--white-10);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    text-transform: uppercase;
}

/* Process / how it works */
.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    border: 1px solid var(--white-10);
    border-radius: 8px;
    overflow: hidden;
}

.process-step {
    padding: 28px 22px;
    border-right: 1px solid var(--white-10);
    position: relative;
    transition: background 0.22s ease;
}

.process-step:last-child { border-right: none; }

.process-step:hover { background: var(--white-06); }

.process-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0;
    font-weight: 300;
}

/* ── CONTACT SECTION ── */
#contact .section-inner {
    flex-direction: column;
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    width: 100%;
    align-items: start;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.82;
    color: var(--white-50);
    font-weight: 300;
    margin-bottom: 28px;
}

.pricing-card {
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
}

.pricing-card-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pricing-card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.pricing-card-sub {
    font-size: 12px;
    color: var(--white-25);
    font-weight: 300;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    font-size: 14.5px;
    color: var(--white-50);
    padding: 6px 0;
    border-top: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}

.pricing-features li::before {
    content: '→';
    color: var(--accent);
    font-size: 11px;
    flex-shrink: 0;
}

.vetting-notice {
    background: var(--red-dim);
    border: 1px solid rgba(255, 59, 92, 0.25);
    border-radius: 6px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.vetting-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.vetting-notice p {
    font-size: 12px;
    line-height: 1.72;
    color: rgba(255, 180, 180, 0.85);
    margin: 0;
    font-weight: 300;
}

.vetting-notice strong {
    color: #ff8fa3;
    font-weight: 700;
}

/* Form */
.contact-form {
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-50);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--white-10);
    border-radius: 5px;
    padding: 12px 16px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.22s ease, background 0.22s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-border);
    background: var(--accent-dim);
}

.form-group select option { background: #1a1a2e; color: white; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.18);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-note {
    font-size: 11px;
    color: var(--white-25);
    font-weight: 300;
    flex: 1;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.22s ease;
    flex-shrink: 0;
}

.form-submit:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,229,255,0.25);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.visible { display: block; }

.form-success-icon { font-size: 48px; margin-bottom: 16px; }

.form-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 14px;
    color: var(--white-50);
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

/* ── TERMINAL TICKER (hero decorative) ── */
.terminal-ticker {
    position: absolute;
    bottom: 32px;
    left: 6%;
    right: 6%;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(0, 229, 255, 0.35);
    letter-spacing: 0.08em;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.ticker-inner {
    display: inline-block;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .process-row { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: none; }
    .process-step:nth-child(1),
    .process-step:nth-child(2) { border-bottom: 1px solid var(--white-10); }
}

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .process-row { grid-template-columns: 1fr; border-radius: 8px; }
    .process-step { border-right: none; border-bottom: 1px solid var(--white-10); }
    .process-step:last-child { border-bottom: none; }
    .contact-form { padding: 24px; }
}

@media (max-width: 640px) {
    .terminal-ticker { display: none; }
    #home .section-inner { padding-top: 72px; }
    .hero-title { font-size: 36px; }
}
