:root {
  --bg: #0f0f0f;
  --surface: rgba(18, 18, 18, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #ffffff;
  --muted: #d7d7d7;
  --border: rgba(255, 255, 255, 0.14);
  --accent: #fff500;
  --accent-text: #111111;
  --container: 1240px;
  --header-height: 72px;
  --radius: 20px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.28);
}

/* LARAVEL-LATER: Split into layout.css, hero.css, buttons.css, sections.css and legal.css if the frontend grows. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  min-height: calc(100vh - var(--header-height));
}

.container {
  width: min(calc(100% - 48px), var(--container)) !important;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
}

.site-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  padding: 18px 24px;
  background: #111111;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 14px;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  font-size: 15px;
  line-height: 1.2;
}

.site-nav a.is-active {
  color: var(--accent);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.95rem 1.5rem;
  border-radius: 6px;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.button-primary:hover {
  background: #ffffff;
  color: #111111;
}

/* Hero */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('/assets/img/hero-image.jpg');
  background-size: cover;
  background-position: 62% center;
  background-repeat: no-repeat;
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.80) 0%,
      rgba(10, 10, 10, 0.64) 34%,
      rgba(10, 10, 10, 0.38) 58%,
      rgba(10, 10, 10, 0.56) 100%
    );
  z-index: 1;
}

.hero-home-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 64px 0;
}

.hero-copy {
  max-width: none;
  padding-right: 48px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
}

.hero-copy .lead {
  margin: 0;
  max-width: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
}

.hero-actions {
  margin-top: 28px;
}

.hero-player-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.radio-popup-static {
  width: 300px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(26, 18, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.radio-popup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.radio-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 245, 0, 0.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.radio-status {
  font-size: 11px;
  font-weight: 700;
  color: #d8d8d8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.radio-player-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  flex: 1;
}

.radio-player-disc {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, #2a2140 0%, #2a2140 28%, #0d0d0d 29%, #0d0d0d 47%, #4c3f6b 48%, #1a1525 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.radio-player-disc span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.radio-kicker {
  margin: 0 0 6px;
  color: #c2b0e3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.radio-popup-body h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 400;
}

.radio-text {
  margin: 0;
  color: #d1d1d1;
  font-size: 14px;
}

.radio-player-footer {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.radio-player-footer span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.radio-player-footer span:nth-child(1) {
  width: 42px;
}

.radio-player-footer span:nth-child(2) {
  width: 72px;
  background: rgba(255, 245, 0, 0.65);
}

.radio-player-footer span:nth-child(3) {
  width: 32px;
}

/* Home benefit sections */
.benefit-section {
  padding: 24px 0 64px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 56px;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

.benefit-image img {
  width: 100%;
  height: auto;
  display: block;
}

.benefit-copy {
  padding-top: 8px;
  padding-bottom: 8px;
}

.benefit-copy-left {
  padding-left: 48px;
}

.benefit-copy-right {
  padding-right: 48px;
}

.benefit-copy h2 {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
  white-space: nowrap;
}

.benefit-copy hr {
  margin: 0 0 22px;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
}

.benefit-copy p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
}

/* Static pages */
.page-hero {
  padding: 72px 0 36px;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 400;
}

.page-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
}

.info-section,
.pricing-section,
.faq-section,
.contact-section,
.legal-section {
  padding: 12px 0 48px;
}

.info-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.pricing-card,
.faq-item,
.contact-card,
.cta-panel,
.legal-content {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-step {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.info-card h2,
.faq-item h2,
.contact-card h2,
.split-copy h2,
.cta-panel h2,
.legal-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.pricing-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
}

.info-card p,
.faq-item p,
.contact-card p,
.split-copy p,
.cta-panel p,
.legal-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.pricing-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.pricing-card-subtitle {
  margin: 0 0 20px;
  color: var(--text) !important;
  opacity: 0.85;
  font-size: 14px !important;
  min-height: 40px;
}

.pricing-price {
  margin: 0 0 18px;
  font-size: 40px !important;
  line-height: 1;
  color: var(--accent) !important;
  font-weight: 400 !important;
}

.pricing-price span {
  font-size: 20px;
  color: var(--text);
}

.pricing-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-list li + li {
  margin-top: 8px;
}

.pricing-card .button {
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.split-section {
  padding: 16px 0 40px;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cta-section {
  padding: 0 0 64px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: #cfcfcf;
  font-size: 15px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-copy {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: #cfcfcf;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}


/* Contact */
.contact-hero {
  padding-bottom: 28px;
}

.contact-section {
  padding: 0 0 56px;
}

.contact-intro-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.contact-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.contact-intro-action {
  display: flex;
  justify-content: flex-end;
}

.newsletter-panel,
.contact-form-section,
.contact-detail-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.newsletter-copy h2,
.contact-form-copy h2,
.contact-detail-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
}

.newsletter-copy p,
.contact-form-copy p,
.contact-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.form-label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 14px 14px;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255, 245, 0, 0.55);
}

.contact-form-section {
  margin-bottom: 32px;
}

.contact-form-copy {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.contact-form-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.captcha-placeholder {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.button-full-mobile {
  width: auto;
}

/* Desktop nav */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
}

/* Tablet/mobile */
@media (max-width: 899px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-home {
    min-height: auto;
    background-position: center center;
  }

  .hero-home-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.44) 0%,
        rgba(10, 10, 10, 0.68) 42%,
        rgba(10, 10, 10, 0.88) 100%
      );
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
    padding: 48px 0 40px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-player-wrap {
    justify-content: flex-start;
  }

  .radio-popup-static {
    width: 100%;
    min-height: auto;
  }

  .benefit-section {
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .benefit-copy,
  .benefit-copy-left,
  .benefit-copy-right {
    padding: 0;
  }

  .benefit-copy h2 {
    white-space: normal;
  }

  .benefit-copy hr {
    margin-bottom: 18px;
  }

  .benefit-row-managers .benefit-image {
    order: 1;
  }

  .benefit-row-managers .benefit-copy {
    order: 2;
  }

  .info-grid,
  .pricing-grid,
  .split-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 48px 0 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-nav {
    gap: 12px 16px;
  }
}

  .contact-intro-row,
  .newsletter-panel,
  .contact-details-grid,
  .form-grid,
  .contact-form-actions {
    grid-template-columns: 1fr;
  }

  .contact-intro-action {
    justify-content: flex-start;
  }

  .newsletter-form-row {
    grid-template-columns: 1fr;
  }

  .button-full-mobile {
    width: 100%;
  }
}


@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .logo {
    padding: 8px 0;
  }

  .logo img {
    height: 32px;
  }

  .hero-home-inner {
    padding: 36px 0 32px;
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .hero-copy .lead {
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .radio-popup-static {
    padding: 16px;
    border-radius: 18px;
  }

  .radio-player-disc {
    width: 100px;
    height: 100px;
  }

  .radio-popup-body h2 {
    font-size: 24px;
  }

  .benefit-copy h2 {
    font-size: 28px;
  }

  .benefit-copy p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .info-card,
  .pricing-card,
  .faq-item,
  .contact-card,
  .cta-panel,
  .legal-content {
    padding: 20px;
  }
}