/* ==========================================================================
   OFFICIAL DON'T PANIC CI/CD DESIGN SYSTEM (ARGE CANNA)
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/montserrat-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./fonts/montserrat-latin-800-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Amiko';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/amiko-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Amiko';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/amiko-latin-700-normal.woff2') format('woff2');
}

:root {
  --green: #2e6741;
  --green-dark: #122719;
  --green-light: #4d9a68;
  
  --dark: #121212;
  --dark-surface: #1e1e1e;
  --dark-surface-2: #2a2a2a;
  --dark-text: #e5e5e5;
  
  --now: #d32f2f;
  --patient: #1e6091;
  --white: #ffffff;
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Amiko', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-2xl: 1rem;
  --radius-xl: 0.75rem;
  --radius-lg: 0.5rem;
  --radius-full: 9999px;
  
  --shadow-brand: 0 10px 30px rgba(46, 103, 65, 0.25);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
  --transition-default: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--dark);
  color: var(--dark-text);
  font-family: var(--font-body);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow-x: hidden;
  background-color: var(--dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(46, 103, 65, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 85% 85%, rgba(30, 96, 145, 0.08) 0%, transparent 50%);
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.container {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--dark-surface-2);
}

.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-brand .wordmark {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.header-brand .wordmark span {
  color: var(--now);
}

.canna-chip {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.header-logo-chip img {
  height: 36px;
  width: auto;
  display: block;
}

/* Main */
main {
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Hero */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-wordmark {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-wordmark span {
  color: var(--now);
}

.hero-claim {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  color: var(--green-light);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-top: 14px;
  padding-top: 4px;
}

.status-card {
  width: 100%;
  max-width: 420px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-2);
  border-radius: var(--radius-xl);
  padding: 16px 20px;
  margin-top: 14px;
  box-shadow: var(--shadow-card);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.status-header span:last-child {
  color: var(--green-light);
}

.progress-bg {
  width: 100%;
  height: 8px;
  background: var(--dark-surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: var(--radius-full);
}

/* Teaser Section */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.teaser-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-2);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-default);
}

.teaser-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow-brand);
}

.teaser-card .card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.tag-now { background: var(--now); color: var(--white); }
.tag-patient { background: var(--patient); color: var(--white); }
.tag-green { background: var(--green); color: var(--white); }

.teaser-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.teaser-card-desc {
  font-size: 0.92rem;
  color: var(--dark-text);
  opacity: 0.9;
  line-height: 1.55;
}

/* Sponsor Box Simple */
.sponsor-card-simple {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark-surface) 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-2xl);
  padding: 40px clamp(20px, 5vw, 44px);
  box-shadow: var(--shadow-brand), var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.sponsor-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  background: rgba(77, 154, 104, 0.15);
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.sponsor-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.8vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.sponsor-text {
  font-size: 1rem;
  color: var(--dark-text);
  opacity: 0.9;
  max-width: 580px;
  line-height: 1.6;
}

.sponsor-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-default);
  border: none;
  text-decoration: none;
}

.btn-brand {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46, 103, 65, 0.4);
}

.btn-brand:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(77, 154, 104, 0.5);
}

.btn-big {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-xl);
}

/* Footer */
footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--dark-surface-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--dark-text);
  opacity: 0.9;
  text-align: center;
}

.footer-logo-chip {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
}

.footer-logo-chip:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.footer-logo-chip img {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  header {
    flex-direction: row;
  }
  .btn-big {
    width: 100%;
    font-size: 0.92rem;
    padding: 16px 20px;
  }
}
