@charset "UTF-8";

/* ============================================================
   PlaylistToday Homepage -- Design System
   Brief 1 v3 -- June 2026
   ============================================================ */

/* -- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }

/* -- Design tokens ------------------------------------------ */
:root {
    --plt-navy:        #1A0E2E;
    --plt-purple-dark: #2A1240;
    --plt-purple:      #6B3FA0;
    --plt-purple-mid:  #5A2E90;
    --plt-purple-lt:   #F3EEF8;
    --plt-gold:        #C39E3C;
    --plt-gold-dark:   #A07A1A;
    --plt-gold-lt:     #FBF5E0;
    --plt-hero-from:   #F8F4FF;
    --plt-hero-to:     #F9F3E8;
    --plt-border:      #EDE8F5;
    --radius-md:       8px;
    --radius-lg:       12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: #fff;
    color: #2A1240;
}

/* -- Shared section helpers --------------------------------- */
.plt-section-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 8px;
}
.plt-section-h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.25;
}
.plt-section-sub {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 32px;
}

/* -- Buttons ------------------------------------------------ */
.plt-btn-gold {
    display: inline-block;
    background: var(--plt-gold);
    color: var(--plt-navy);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.plt-btn-gold:hover { background: var(--plt-gold-dark); color: var(--plt-navy); }

.plt-btn-ghost-light {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(255,255,255,0.25);
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}
.plt-btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.plt-btn-purple {
    display: inline-block;
    background: var(--plt-purple);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    border: none;
    transition: background 0.2s;
}
.plt-btn-purple:hover { background: var(--plt-purple-mid); color: #fff; }

.plt-btn-ghost-purple {
    display: inline-block;
    background: transparent;
    color: var(--plt-purple);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    border: 1px solid #C4A8E0;
    transition: background 0.2s;
}
.plt-btn-ghost-purple:hover { background: var(--plt-purple-lt); color: var(--plt-purple); }


/* ============================================================
   HERO
   ============================================================ */
.plt-hero {
    background: linear-gradient(135deg, var(--plt-hero-from) 0%, var(--plt-hero-to) 100%);
    padding: 60px 36px 64px;
}
.plt-hero-inner { max-width: 1200px; margin: 0 auto; }

.plt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.plt-hero-text { /* left column */ }

.plt-hero-eyebrow {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plt-purple);
    display: block;
    margin-bottom: 14px;
}
.plt-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--plt-purple-dark);
    line-height: 1.2;
    margin: 0 0 16px;
}
.plt-hero-sub {
    font-size: 17px;
    color: #4A4060;
    line-height: 1.75;
    margin: 0 0 10px;
}
.plt-hero-em {
    font-size: 16px;
    color: var(--plt-purple);
    font-weight: 700;
    margin: 0 0 28px;
}
.plt-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.plt-hero-note { font-size: 13px; color: #8B7AAA; margin: 0; }

/* -- Browser mockup ----------------------------------------- */
.plt-hero-mockup-wrap {
    width: 100%;
}

.plt-browser-frame {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 0.5px solid #E5E7EB;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(107,63,160,0.14);
}

.plt-browser-bar {
    background: #F3F4F6;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 0.5px solid #E5E7EB;
}

.plt-browser-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.plt-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.plt-browser-url {
    flex: 1;
    background: #fff;
    border: 0.5px solid #E5E7EB;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-family: monospace;
    color: #6B7280;
}

/* -- Dashboard UI mockup ------------------------------------ */
.plt-dash { font-family: 'Nunito', sans-serif; background: #fff; }

.plt-dash-nav {
    background: var(--plt-navy);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.plt-dash-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}
.plt-dash-brand i { color: var(--plt-gold); font-size: 13px; }
.plt-dash-nav-links {
    display: flex;
    gap: 2px;
    margin-left: auto;
}
.plt-dash-nav-links span {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: default;
}
.plt-dash-nav-active {
    color: #fff !important;
    font-weight: 700;
    border-bottom: 2px solid var(--plt-gold);
}

.plt-dash-body { padding: 12px; }

.plt-dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}
.plt-dash-card {
    border: 1px solid var(--plt-border);
    border-radius: 8px;
    padding: 10px 12px;
}
.plt-dash-card-lbl {
    font-size: 9px;
    font-weight: 600;
    color: #A898C0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.plt-dash-card-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--plt-purple-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}
.plt-dash-card-val--sm { font-size: 14px; font-weight: 800; }
.plt-dash-card-sub { font-size: 10px; color: #A898C0; }

.plt-dash-schedule {
    border: 1px solid var(--plt-border);
    border-radius: 8px;
    padding: 10px 12px;
}
.plt-dash-sched-hd {
    font-size: 9px;
    font-weight: 700;
    color: #A898C0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.plt-dash-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.plt-dash-slot:last-child { margin-bottom: 0; }
.plt-dash-time {
    font-size: 10px;
    color: #A898C0;
    font-weight: 600;
    min-width: 32px;
    flex-shrink: 0;
}
.plt-dash-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    flex: 1;
}
.plt-dash-pill--a { background: var(--plt-purple-lt); color: var(--plt-purple); }
.plt-dash-pill--b { background: var(--plt-purple-mid); color: #fff; }
.plt-dash-pill--c { background: var(--plt-purple); color: #fff; }

.plt-dash-footer {
    background: var(--plt-purple-dark);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.plt-dash-online {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.plt-dash-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28C840;
    display: inline-block;
    flex-shrink: 0;
}
.plt-dash-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 12px;
}
.plt-dash-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.plt-dash-stat-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--plt-gold);
    line-height: 1.2;
    display: block;
}
.plt-dash-stat-lbl {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    display: block;
}
.plt-dash-stat-div {
    width: 0.5px;
    height: 24px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ============================================================
   BRAND LOGO STRIP
   ============================================================ */
.plt-logo-strip {
    background: #fff;
    border-top: 0.5px solid var(--plt-border);
    border-bottom: 0.5px solid var(--plt-border);
    padding: 28px 36px;
    text-align: center;
}
.plt-logo-strip-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B8A8D0;
    display: block;
    margin-bottom: 18px;
}
.plt-logo-strip-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 32px;
}

/* Brand item wrapper — needed for tooltip */
.plt-brand-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.plt-brand-item img {
    max-height: 38px;
    max-width: 132px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.85);
    transition: filter 0.2s ease;
    display: block;
}
.plt-brand-item:hover img { filter: none; }
.plt-brand-item--invert img { filter: invert(1) opacity(0.85); }
.plt-brand-item--invert:hover img { filter: invert(1); }
.plt-brand-item--darken img { filter: grayscale(100%) contrast(4) brightness(0.35) opacity(0.85); }
.plt-brand-item--darken:hover img { filter: contrast(2) brightness(0.7); }
/* Light-on-white JPGs: brightness first pushes logo colour below the 50% midpoint, then high contrast separates text from background */
.plt-brand-item--lighten-logo img { filter: grayscale(100%) brightness(0.6) contrast(12) opacity(0.85); }
.plt-brand-item--lighten-logo:hover img { filter: brightness(0.75) contrast(1.8) saturate(1.2); }

/* Since-year tooltip via CSS only */
.plt-brand-item[data-since]::after {
    content: attr(data-since);
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #2A1240;
    color: #C39E3C;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    border-radius: 6px;
    padding: 3px 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 10;
}
.plt-brand-item[data-since]:hover::after { opacity: 1; }

.plt-logo-strip-more {
    font-size: 13px;
    color: #B8A8D0;
    white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.plt-voices { background: var(--plt-navy); padding: 44px 36px; }
.plt-voices-inner { max-width: 1200px; margin: 0 auto; }

.plt-voices-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(195,158,60,0.7);
    display: block;
    margin-bottom: 20px;
}
.plt-voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    align-items: stretch;
}
.plt-voice-card {
    background: rgba(195,158,60,0.07);
    border: 0.5px solid rgba(195,158,60,0.2);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
}
.plt-voice-quote-mark {
    font-size: 28px;
    color: var(--plt-gold);
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}
.plt-voice-text {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin: 0 0 14px;
    font-style: italic;
    flex: 1;
}
.plt-voice-attr { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.plt-voice-attr strong {
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    font-style: normal;
}

/* ============================================================
   SERVICES
   ============================================================ */
.plt-services { background: #fff; padding: 52px 36px; }
.plt-services-inner { max-width: 1200px; margin: 0 auto; }
.plt-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }

.plt-service-card { border: 0.5px solid var(--plt-border); border-radius: var(--radius-lg); padding: 24px; }
.plt-service-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
}
.plt-service-icon-music  { background: var(--plt-purple-lt); color: var(--plt-purple); }
.plt-service-icon-rf     { background: #EDE5F8; color: var(--plt-purple-mid); }
.plt-service-icon-screen { background: var(--plt-gold-lt); color: #7A5A10; }

.plt-service-name  { font-size: 17px; font-weight: 800; color: var(--plt-purple-dark); margin-bottom: 4px; }
.plt-service-price { font-size: 13px; color: #8A6A10; font-weight: 600; margin-bottom: 10px; }
.plt-service-body  { font-size: 15px; color: #5A5070; line-height: 1.65; margin-bottom: 14px; }
.plt-service-badge {
    display: inline-block;
    background: var(--plt-gold-lt);
    border: 0.5px solid #D4AA40;
    color: #7A5A10;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    margin-bottom: 10px;
}
.plt-service-features { padding: 0; margin: 0; }
.plt-service-features li {
    font-size: 14px;
    color: #5A5070;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    line-height: 1.45;
}
.plt-service-features li i { color: var(--plt-purple); font-size: 15px; margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   PLATFORM FEATURES
   ============================================================ */
.plt-features { background: var(--plt-hero-from); padding: 52px 36px; }
.plt-features-inner { max-width: 1200px; margin: 0 auto; }
.plt-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }

.plt-feature-card { background: #fff; border: 0.5px solid var(--plt-border); border-radius: var(--radius-lg); padding: 20px; }
.plt-feature-card i { font-size: 22px; color: var(--plt-purple); display: block; margin-bottom: 12px; }
.plt-feature-title { font-size: 15px; font-weight: 800; color: var(--plt-purple-dark); margin-bottom: 6px; }
.plt-feature-body  { font-size: 14px; color: #6A607A; line-height: 1.65; margin: 0; }

/* ============================================================
   SECTORS
   ============================================================ */
.plt-sectors { background: #fff; padding: 52px 36px; }
.plt-sectors-inner { max-width: 1200px; margin: 0 auto; }
.plt-sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 10px; }

.plt-sector-card {
    border: 0.5px solid var(--plt-border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.plt-sector-icon {
    width: 34px; height: 34px; min-width: 34px;
    background: var(--plt-purple-lt);
    color: var(--plt-purple);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
}
.plt-sector-name  { font-size: 15px; font-weight: 800; color: var(--plt-purple-dark); margin-bottom: 4px; }
.plt-sector-value { font-size: 14px; color: #7A708A; line-height: 1.55; margin: 0; }
.plt-sector-value em { color: var(--plt-purple); font-weight: 700; font-style: normal; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.plt-steps { background: var(--plt-purple-dark); padding: 52px 36px; }
.plt-steps-inner { max-width: 1200px; margin: 0 auto; }

.plt-steps-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(195,158,60,0.7);
    display: block;
    margin-bottom: 8px;
}
.plt-steps h2 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.plt-steps-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin: 0 0 32px; max-width: 600px; }

.plt-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-left: 0.5px solid rgba(255,255,255,0.08);
}
.plt-step { border-right: 0.5px solid rgba(255,255,255,0.08); padding: 20px; }
.plt-step-circle {
    width: 26px; height: 26px;
    border: 1.5px solid var(--plt-gold);
    border-radius: 50%;
    color: var(--plt-gold);
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
}
.plt-step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.plt-step-body  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.plt-cta {
    background: var(--plt-navy);
    padding: 52px 36px;
    border-top: 0.5px solid rgba(195,158,60,0.2);
}
.plt-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.plt-cta-text { flex: 1; min-width: 260px; }
.plt-cta-text h2 { font-size: 24px; font-weight: 800; color: #fff; max-width: 440px; line-height: 1.3; margin: 0 0 8px; }
.plt-cta-text p  { font-size: 15px; color: rgba(255,255,255,0.5); margin: 0; }
.plt-cta-action  { text-align: center; flex-shrink: 0; }
.plt-cta-action .plt-btn-gold { padding: 13px 26px; font-size: 15px; display: block; margin-bottom: 6px; }
.plt-cta-note { font-size: 13px; color: rgba(255,255,255,0.35); white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.plt-footer { background: #120A20; padding: 22px 36px; }
.plt-footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.plt-footer-left img { height: 20px; width: auto; margin-bottom: 6px; }
.plt-footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); }
.plt-footer-links { display: flex; flex-wrap: wrap; gap: 4px 18px; align-items: center; }
.plt-footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.plt-footer-links a:hover { color: rgba(255,255,255,0.65); }
.plt-footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .plt-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .plt-dash-nav-links { display: none; }
}

@media (max-width: 768px) {
    .plt-hero { padding: 40px 20px 72px; }
    .plt-hero h1 { font-size: 28px; }
    .plt-hero-sub { font-size: 16px; }
    .plt-hero-buttons { flex-direction: column; }
    .plt-hero-buttons a { text-align: center; }

    /* Hide since-year tooltips on touch devices */
    .plt-brand-item[data-since]::after { display: none; }

    .plt-logo-strip { padding: 20px 16px; }
    .plt-logo-strip-logos { gap: 16px 20px; }

    .plt-voices { padding: 32px 20px; }
    .plt-voices-grid { grid-template-columns: 1fr; }

    .plt-services,
    .plt-features,
    .plt-sectors,
    .plt-steps,
    .plt-cta { padding: 36px 20px; }

    .plt-steps-grid { grid-template-columns: 1fr; border-left: none; }
    .plt-step { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
    .plt-step:last-child { border-bottom: none; }

    .plt-cta-inner { flex-direction: column; align-items: flex-start; }
    .plt-cta-action { text-align: left; }
    .plt-cta-action .plt-btn-gold { display: inline-block; }

    .plt-footer { padding: 20px; }
    .plt-footer-inner { flex-direction: column; align-items: flex-start; }

    .plt-sectors-grid { grid-template-columns: 1fr; }
}
