/* ==========================================================================
   PUTKI BONUS - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Font Declarations */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/font_bricolage_grotesque_600_normal.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/font_bricolage_grotesque_700_normal.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/font_bricolage_grotesque_800_normal.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/font_plus_jakarta_sans_400_normal.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/font_plus_jakarta_sans_500_normal.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/font_plus_jakarta_sans_600_normal.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/font_plus_jakarta_sans_700_normal.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Custom Properties */
:root {
  --putki-bg: #090d16;
  --putki-card-bg: rgba(18, 26, 43, 0.85);
  --putki-card-border: rgba(255, 255, 255, 0.08);
  --putki-green-bright: #00ff66;
  --putki-green-accent: #22c55e;
  --putki-green-glow: rgba(0, 255, 102, 0.15);
  --putki-gold-accent: #fbbf24;
  --putki-gold-glow: rgba(251, 191, 36, 0.15);
  --putki-blue-accent: #3b82f6;
  --putki-blue-glow: rgba(59, 130, 246, 0.15);
  --putki-red-accent: #ef4444;
  --putki-text-main: #f8fafc;
  --putki-text-sub: #94a3b8;
  --putki-font-headline: 'Bricolage Grotesque', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --putki-font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--putki-bg);
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(0, 255, 102, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 95% 85%, rgba(251, 191, 36, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #090d16 0%, #060910 100%);
  color: var(--putki-text-main);
  font-family: var(--putki-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4 {
  font-family: var(--putki-font-headline);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--putki-green-bright) 0%, var(--putki-green-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--putki-gold-accent) 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Containers */
.putki-glass {
  background: var(--putki-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--putki-card-border);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.putki-glass:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.putki-glass-glow-green {
  border-color: rgba(0, 255, 102, 0.2);
  box-shadow: 0 0 40px rgba(0, 255, 102, 0.08), inset 0 0 15px rgba(0, 255, 102, 0.03);
}
.putki-glass-glow-green:hover {
  border-color: rgba(0, 255, 102, 0.4);
  box-shadow: 0 0 40px rgba(0, 255, 102, 0.15), inset 0 0 15px rgba(0, 255, 102, 0.05);
}

.putki-glass-glow-gold {
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.08), inset 0 0 15px rgba(251, 191, 36, 0.03);
}
.putki-glass-glow-gold:hover {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.15), inset 0 0 15px rgba(251, 191, 36, 0.05);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* Badge System */
.putki-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.2);
  color: var(--putki-green-bright);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.putki-badge-gold {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--putki-gold-accent);
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  font-family: var(--putki-font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--putki-green-bright) 0%, var(--putki-green-accent) 100%);
  color: #062412;
  box-shadow: 0 8px 30px rgba(0, 255, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 102, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--putki-card-border);
  color: var(--putki-text-main);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Header & Sticky Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--putki-card-border);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--putki-font-headline);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.logo span {
  color: var(--putki-green-bright);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  color: var(--putki-text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--putki-green-bright);
  background: rgba(0, 255, 102, 0.06);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0 100px 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin: 16px 0 24px 0;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--putki-text-sub);
  margin-bottom: 36px;
  max-width: 600px;
}

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

.hero-badge-group {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--putki-text-sub);
}

.hero-badge-item svg {
  color: var(--putki-green-bright);
  width: 18px;
  height: 18px;
}

/* Floating Card / Graphics in Hero */
.hero-graphic-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  position: relative;
  z-index: 2;
}

.hero-card-glowing-dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--putki-green-bright) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.3;
}

.hero-glow-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Ticker Bar */
.ticker-bar {
  background: linear-gradient(90deg, #052e16 0%, #064e3b 50%, #052e16 100%);
  border-top: 1px solid rgba(0, 255, 102, 0.2);
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 30s linear infinite;
  gap: 40px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--putki-font-headline);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.ticker-item span {
  color: var(--putki-green-bright);
}

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

/* Section Title Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-top: 12px;
  color: #fff;
}

/* Three Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 4px solid transparent;
}

.pillar-card.p-starttipakki { border-bottom-color: var(--putki-green-bright); }
.pillar-card.p-korjaussarja { border-bottom-color: var(--putki-gold-accent); }
.pillar-card.p-ikuinenputki { border-bottom-color: var(--putki-blue-accent); }

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.pillar-card.p-starttipakki .pillar-icon-box {
  background: rgba(0, 255, 102, 0.08);
  border-color: rgba(0, 255, 102, 0.2);
}
.pillar-card.p-korjaussarja .pillar-icon-box {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
}
.pillar-card.p-ikuinenputki .pillar-icon-box {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.pillar-step {
  font-family: var(--putki-font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pillar-card.p-starttipakki .pillar-step { color: var(--putki-green-bright); }
.pillar-card.p-korjaussarja .pillar-step { color: var(--putki-gold-accent); }
.pillar-card.p-ikuinenputki .pillar-step { color: var(--putki-blue-accent); }

.pillar-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.pillar-description {
  color: var(--putki-text-sub);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pillar-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--putki-text-main);
}

.pillar-bullet-item svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.p-starttipakki svg { color: var(--putki-green-bright); }
.p-korjaussarja svg { color: var(--putki-gold-accent); }
.p-ikuinenputki svg { color: var(--putki-blue-accent); }

/* Interactive Calculator Section */
.calc-card-wrapper {
  padding: 48px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.slider-group {
  display: flex;
  flex-direction: column;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.slider-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--putki-text-sub);
}

.slider-val-box {
  font-family: var(--putki-font-headline);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
}

#val-streak-days { color: var(--putki-green-bright); }
#val-daily-wager { color: var(--putki-gold-accent); }

/* Custom Sliders */
.putki-range-input {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: #151f32;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.putki-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--putki-green-accent);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
  transition: transform 0.1s ease;
}

.putki-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.putki-range-input#input-daily-wager::-webkit-slider-thumb {
  border-color: var(--putki-gold-accent);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.calc-info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--putki-card-border);
  border-radius: 16px;
  padding: 20px;
  margin-top: 10px;
}

.calc-info-box-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.calc-info-box-text {
  font-size: 0.85rem;
  color: var(--putki-text-sub);
  line-height: 1.5;
}

/* Calculator Result Block */
.calc-result-box {
  background: radial-gradient(circle at 50% 50%, rgba(18, 28, 48, 0.95) 0%, rgba(9, 13, 22, 0.98) 100%);
  border: 1px solid rgba(0, 255, 102, 0.25);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 102, 0.03);
  position: relative;
  overflow: hidden;
}

.calc-result-box::before {
  content: '';
  position: absolute;
  top: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.calc-result-level-label {
  font-size: 0.85rem;
  color: var(--putki-text-sub);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.calc-result-level-name {
  font-family: var(--putki-font-headline);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 20px 0;
}

.calc-result-reward-val {
  font-family: var(--putki-font-headline);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--putki-green-bright);
  text-shadow: 0 0 30px rgba(0, 255, 102, 0.35);
  line-height: 1.1;
  margin-bottom: 8px;
}

.calc-result-reward-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.calc-result-desc {
  font-size: 0.9rem;
  color: var(--putki-text-sub);
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 24px;
}

/* Comparison Section */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.comparison-table th, .comparison-table td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  font-family: var(--putki-font-headline);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.01);
}

.comparison-table th:first-child {
  border-top-left-radius: 16px;
}

.comparison-table th:last-child {
  border-top-right-radius: 16px;
}

.comparison-feature-col {
  font-weight: 700;
  color: var(--putki-text-main);
  max-width: 220px;
}

.comparison-putki-col {
  background: rgba(0, 255, 102, 0.02);
  border-left: 1px solid rgba(0, 255, 102, 0.1);
  border-right: 1px solid rgba(0, 255, 102, 0.1);
  font-weight: 600;
  color: var(--putki-text-main);
}

.comparison-table tr:last-child td.comparison-putki-col {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid rgba(0, 255, 102, 0.1);
}

.comparison-other-col {
  color: var(--putki-text-sub);
  background: rgba(255, 255, 255, 0.005);
}

.comp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
}

.comp-badge-green {
  background: rgba(0, 255, 102, 0.1);
  color: var(--putki-green-bright);
}

.comp-badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--putki-red-accent);
}

.comparison-callout {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.05) 0%, rgba(9, 13, 22, 0.8) 100%);
  border: 1px solid rgba(0, 255, 102, 0.2);
  border-radius: 16px;
  text-align: center;
}

.comparison-callout-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.comparison-callout-text span {
  color: var(--putki-green-bright);
}

/* SEO Editorial Article Section */
.seo-article-card {
  padding: 56px;
}

.seo-article {
  max-width: 850px;
  margin: 0 auto;
}

.seo-article h3 {
  font-size: 1.8rem;
  color: #fff;
  margin: 40px 0 20px 0;
}

.seo-article h4 {
  font-size: 1.3rem;
  color: #fff;
  margin: 28px 0 14px 0;
}

.seo-article p {
  color: var(--putki-text-sub);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.seo-article p strong {
  color: var(--putki-text-main);
}

.seo-article ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-article li {
  color: var(--putki-text-sub);
  font-size: 1.02rem;
  padding-left: 28px;
  position: relative;
}

.seo-article li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--putki-green-bright);
  font-weight: 800;
}

.seo-quote-block {
  border-left: 4px solid var(--putki-green-bright);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 0 16px 16px 0;
  margin: 32px 0;
}

.seo-quote-text {
  font-family: var(--putki-font-headline);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 8px;
}

.seo-quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--putki-green-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--putki-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  border: none;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question-text {
  font-family: var(--putki-font-headline);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--putki-text-sub);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 300;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.002);
}

.faq-answer-content {
  padding: 0 28px 24px 28px;
  color: var(--putki-text-sub);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(0, 255, 102, 0.2);
  background: rgba(0, 255, 102, 0.01);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--putki-green-bright);
}

/* Waitlist Signup Block */
.waitlist-card {
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-card::after {
  content: '';
  position: absolute;
  bottom: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.waitlist-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.waitlist-subtitle {
  color: var(--putki-text-sub);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 5;
}

.waitlist-input {
  flex-grow: 1;
  background: #0f1624;
  border: 1px solid var(--putki-card-border);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--putki-font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.waitlist-input:focus {
  border-color: var(--putki-green-bright);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.1);
}

.waitlist-submit-btn {
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 16px 24px;
}

.waitlist-terms {
  font-size: 0.78rem;
  color: var(--putki-text-sub);
}

/* Footer Section */
.footer {
  background: #060910;
  border-top: 1px solid var(--putki-card-border);
  padding: 60px 0 40px 0;
  color: var(--putki-text-sub);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  font-family: var(--putki-font-headline);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
}

.footer-brand-logo span {
  color: var(--putki-green-bright);
}

.footer-brand-desc {
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  color: var(--putki-text-sub);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--putki-card-border);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.footer-links-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--putki-text-sub);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #fff;
}

.footer-links-list a.highlight {
  color: var(--putki-green-bright);
  font-weight: 700;
}

.footer-support-email {
  color: var(--putki-green-bright);
  font-weight: 700;
  margin-top: 4px;
  text-decoration: none;
  display: inline-block;
}

.footer-support-subtext {
  font-size: 0.78rem;
  color: #475569;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.82rem;
  color: #475569;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.footer-licensing {
  color: #64748b;
}

/* Responsible Gaming Badge */
.rg-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(9, 13, 22, 0.95) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rg-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.rg-title {
  font-size: 0.8rem;
  color: var(--putki-red-accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.rg-quote {
  font-family: var(--putki-font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.rg-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.rg-card {
  padding: 20px;
  text-decoration: none;
  display: block;
  border-left: 4px solid var(--putki-red-accent);
}

.rg-card-title {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}

.rg-card-phone {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 4px 0;
}

.rg-card.p-peluuri { border-left-color: var(--putki-green-bright); }
.rg-card.p-peluuri .rg-card-phone { color: var(--putki-green-bright); }

.rg-card.p-ga { border-left-color: var(--putki-gold-accent); }
.rg-card.p-ga .rg-card-phone { color: var(--putki-gold-accent); }

.rg-card.p-linkki { border-left-color: var(--putki-blue-accent); }
.rg-card.p-linkki .rg-card-phone { color: var(--putki-blue-accent); }

.rg-card.p-tiltti { border-left-color: #a855f7; }
.rg-card.p-tiltti .rg-card-phone { color: #a855f7; }

.rg-card-desc {
  font-size: 0.78rem;
  color: var(--putki-text-sub);
}

/* Croc Chat Toggle Floating Button */
#crocChatToggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--putki-green-accent);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#crocChatToggle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

#crocChatToggle:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
}

#crocChatToggle .ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pingAnimation 1.5s infinite;
}

@keyframes pingAnimation {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(0.9); opacity: 1; }
}

/* Chat Drawer Panel */
#crocChatPanel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  height: 520px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

#crocChatPanel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-head {
  background: #0f172a;
  border-bottom: 1px solid var(--putki-card-border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.chat-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 255, 102, 0.3);
}

.chat-head .who {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}

.chat-head .sub {
  font-size: 0.75rem;
  color: var(--putki-text-sub);
}

.chat-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--putki-text-sub);
  font-size: 1.1rem;
  cursor: pointer;
}

.chat-close:hover {
  color: #fff;
}

.chat-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  background: #090d16;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.msg.bot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--putki-card-border);
  color: var(--putki-text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: var(--putki-green-accent);
  color: #062412;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-suggest {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--putki-card-border);
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
}

.chat-suggest::-webkit-scrollbar {
  display: none;
}

.chat-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--putki-card-border);
  color: var(--putki-text-sub);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-chip:hover {
  background: rgba(0, 255, 102, 0.06);
  border-color: rgba(0, 255, 102, 0.3);
  color: var(--putki-green-bright);
}

.chat-input-row {
  padding: 12px 20px;
  background: #0f172a;
  border-top: 1px solid var(--putki-card-border);
  display: flex;
  gap: 10px;
}

.chat-input-row input {
  flex-grow: 1;
  background: #090d16;
  border: 1px solid var(--putki-card-border);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}

.chat-input-row input:focus {
  border-color: var(--putki-green-accent);
}

.chat-input-row button {
  background: var(--putki-green-accent);
  border: none;
  color: #062412;
  font-weight: 700;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
}

.chat-input-row button:hover {
  filter: brightness(1.1);
}

/* Exit Modal Styles */
.putki-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.putki-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.putki-modal-card {
  width: 90%;
  max-width: 500px;
  background: #0f1624;
  border: 2px solid rgba(0, 255, 102, 0.3);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 255, 102, 0.1);
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.putki-modal-backdrop.active .putki-modal-card {
  transform: translateY(0);
}

.putki-modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: none;
  border: none;
  color: var(--putki-text-sub);
  font-size: 1.2rem;
  cursor: pointer;
}

.putki-modal-close:hover {
  color: #fff;
}

.putki-modal-title {
  font-family: var(--putki-font-headline);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  line-height: 1.3;
}

.putki-modal-subtitle {
  color: var(--putki-text-sub);
  font-size: 0.95rem;
  margin: 8px 0 24px 0;
}

.putki-modal-input {
  flex-grow: 1;
  background: #090d16;
  border: 1px solid var(--putki-card-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  outline: none;
}

.putki-modal-input:focus {
  border-color: var(--putki-green-bright);
}

/* Page Routing Display Control */
#page-rg {
  display: none; /* Controlled by JS Router */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .hero-grid, .calc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-graphic-container {
    order: -1;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none; /* Hide standard nav for drawer or mobile logic */
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #090d16;
    border-bottom: 1px solid var(--putki-card-border);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }

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

  .section {
    padding: 60px 0;
  }

  .waitlist-form {
    flex-direction: column;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .calc-card-wrapper {
    padding: 30px 20px;
  }
  
  #crocChatPanel {
    width: calc(100% - 48px);
    right: 24px;
    left: 24px;
    bottom: 96px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}
