/* ===== Delta Capital — Global Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #07090E;
  --bg-surface: rgba(255,255,255,0.02);
  --accent: #00F5D4;
  --accent-dim: rgba(0,245,212,0.08);
  --accent-glow: rgba(0,245,212,0.15);
  --warn: #FF3B30;
  --warn-bg: #1A0C0C;
  --gold: #D4AF37;
  --gold-dim: rgba(212,175,55,0.12);
  --text-primary: rgba(255,255,255,0.92);
  --text-secondary: rgba(255,255,255,0.45);
  --text-tertiary: rgba(255,255,255,0.25);
  --border: rgba(255,255,255,0.04);
  --border-hover: rgba(255,255,255,0.08);
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-gap: 120px;
  --card-pad: 48px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: radial-gradient(circle at 50% 0%, #111827 0%, #07090E 70%, #030406 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO — Section 1 ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  opacity: 0.4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border: 1px solid rgba(0,245,212,0.2);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
  background: rgba(0,245,212,0.03);
  animation: breathe 3s ease-in-out infinite;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.hero-card {
  max-width: 680px;
  padding: 32px 40px;
  border: 1px solid rgba(0,245,212,0.12);
  border-radius: var(--radius);
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px var(--accent-dim);
  animation: breathe 3s ease-in-out infinite;
  text-align: left;
}

.hero-card p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.8;
}

.hero-card .highlight {
  color: var(--accent);
  font-weight: 600;
}

/* ===== PROOF — Section 2 ===== */
.proof-grid {
  display: grid;
  grid-template-columns: 45fr 45fr;
  gap: 80px;
  align-items: center;
}

.proof-text .section-desc {
  margin-bottom: 40px;
}

.proof-desc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.proof-desc-item {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  padding-left: 16px;
  position: relative;
}

.proof-desc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.proof-desc-highlight {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
}

.proof-desc-highlight::before {
  background: var(--accent);
  opacity: 1;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  box-shadow: 0 0 60px var(--accent-dim), inset 0 0 30px rgba(0,0,0,0.3);
  animation: phoneGlow 4s ease-in-out infinite;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0f1a 0%, #060a12 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 20px;
}

.phone-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0,245,212,0.3);
  background: rgba(0,245,212,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-bottom: 16px;
}

.phone-play-btn:hover {
  background: rgba(0,245,212,0.15);
  box-shadow: 0 0 30px var(--accent-dim);
}

.phone-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  margin-left: 3px;
}

.phone-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  text-align: center;
}

.video-toggle-btn {
  position: absolute;
  bottom: 28px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,245,212,0.3);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.video-toggle-btn:hover {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0,245,212,0.2);
}
.video-icon-pause, .video-icon-play {
  line-height: 1;
}

.promise-big {
  font-size: 1.3em;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0,245,212,0.4);
}

.log-box {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(10px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 2;
}

.log-line {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.6s var(--ease);
}

.log-line.visible {
  opacity: 1;
  transform: translateX(0);
}

.log-line.gray { color: var(--text-secondary); }
.log-line.green { color: var(--accent); font-weight: 600; }

/* ===== RADAR — Section 3 ===== */
.radar-input-wrap {
  max-width: 720px;
  margin: 40px auto 0;
}

.radar-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.radar-input-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s var(--ease);
  padding-bottom: 2px;
}

.radar-input-row.active {
  border-color: var(--accent);
}

.radar-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  padding: 12px 0;
  caret-color: var(--accent);
}

.radar-input::placeholder {
  color: var(--text-tertiary);
}

.radar-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  padding: 12px 0 12px 24px;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif;
}

.radar-btn:hover { opacity: 0.7; }

.radar-output {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 2;
  min-height: 40px;
}

.radar-output span {
  display: inline;
  opacity: 0;
  transition: opacity 0.4s;
}

.radar-output span.visible { opacity: 1; }

/* ===== BLUEPRINT — Section 4 ===== */
.timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 0;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== ARCHIVES — Section 5 ===== */
.accordion {
  margin-top: 48px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
}

.accordion-item:hover {
  border-color: rgba(0,245,212,0.1);
  box-shadow: 0 0 30px var(--accent-dim);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(255,255,255,0.01);
}

.accordion-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.accordion-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.accordion-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.accordion-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  white-space: nowrap;
  padding-left: 24px;
}

.accordion-arrow {
  width: 20px;
  height: 20px;
  margin-left: 16px;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.accordion-arrow svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-tertiary);
}

.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.accordion-body-inner {
  padding: 0 32px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ===== WARNING — Section 6 ===== */
.warning-section {
  background: radial-gradient(circle at 50% 50%, #1A0C0C 0%, #0a0608 70%, #030406 100%);
}

.warning-card {
  border: 1px solid rgba(255,59,48,0.15);
  border-radius: var(--radius);
  padding: var(--card-pad);
  background: rgba(255,59,48,0.02);
  backdrop-filter: blur(20px);
  animation: warnBreathe 4s ease-in-out infinite;
}

.warning-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.92);
}

.warning-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ===== REVENUE — Section 7 ===== */
.revenue-card {
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: var(--card-pad);
  background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(20px);
}

.revenue-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--gold);
}

.revenue-highlight {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
  background: rgba(212,175,55,0.04);
}

.revenue-highlight p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
}

.revenue-highlight .gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
}

.revenue-privilege {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== SECURE — Section 8 ===== */
.secure-section { text-align: center; }

.secure-lock {
  margin: 48px auto 0;
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.secure-lock-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: lockSlide 2s ease-in-out infinite;
}

/* ===== PASSPORT — Section 9 ===== */
.passport-form {
  max-width: 560px;
  margin: 48px auto 0;
}

.form-field {
  margin-bottom: 32px;
}

.form-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: block;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.4s var(--ease);
  font-family: 'Inter', sans-serif;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-radio-group {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.form-radio input[type="radio"]:checked {
  border-color: var(--accent);
}

.form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0,245,212,0.25);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-family: 'Inter', sans-serif;
  margin-top: 16px;
}

.submit-btn:hover {
  background: rgba(0,245,212,0.06);
  box-shadow: 0 0 30px var(--accent-dim);
  border-color: rgba(0,245,212,0.4);
}

.submit-btn .arrow {
  transition: transform 0.3s var(--ease);
}

.submit-btn:hover .arrow {
  transform: translateX(4px);
}

/* ===== Page Fade Out ===== */
.page-fadeout {
  animation: pageFadeOut 0.8s var(--ease) forwards;
}

/* ===== Keyframes ===== */
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 40px rgba(0,245,212,0.06); }
  50% { box-shadow: 0 0 60px rgba(0,245,212,0.12); }
}

@keyframes phoneGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(0,245,212,0.06), inset 0 0 30px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 70px rgba(0,245,212,0.12), inset 0 0 30px rgba(0,0,0,0.3); }
}

@keyframes warnBreathe {
  0%, 100% { border-color: rgba(255,59,48,0.1); }
  50% { border-color: rgba(255,59,48,0.2); }
}

@keyframes lockSlide {
  0% { left: -30%; }
  100% { left: 100%; }
}

@keyframes pageFadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.02); }
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== Hero CTA Button ===== */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 14px 32px;
  border: 1px solid rgba(0,245,212,0.2);
  border-radius: var(--radius);
  background: rgba(0,245,212,0.04);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  background: rgba(0,245,212,0.1);
  border-color: rgba(0,245,212,0.4);
  box-shadow: 0 0 30px var(--accent-dim);
  transform: translateY(-2px);
}

/* ===== Enlarged Phone Frame (50%+) ===== */
.phone-frame-lg {
  width: 420px;
  height: 870px;
}

.phone-frame-lg .phone-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 34px;
  display: none;
}

.phone-frame-lg .phone-video.playing {
  display: block;
}

.phone-frame-lg .phone-play-btn {
  z-index: 2;
  position: relative;
}

.phone-frame-lg .phone-label {
  z-index: 2;
  position: relative;
}

.phone-frame-lg.playing .phone-play-btn,
.phone-frame-lg.playing .phone-label {
  display: none;
}

/* ===== Card Gallery (Blueprint) ===== */
.card-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gallery-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.gallery-card:hover {
  border-color: rgba(0,245,212,0.12);
  box-shadow: 0 0 40px var(--accent-dim);
  transform: translateY(-4px);
}

.gallery-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.gallery-card-title {
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px 0;
  line-height: 1.4;
}

.gallery-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 20px 20px;
  line-height: 1.6;
}

/* ===== Lightbox Modal ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  padding: 4px 8px;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

.lightbox-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

/* ===== Radar Enhanced Report ===== */
.radar-report {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(10px);
  display: none;
}

.radar-report.visible { display: block; }

.radar-report-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
}

.radar-report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radar-report-item {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.01);
}

.radar-report-item .label {
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.radar-report-item .value {
  font-size: 13px;
  color: var(--text-primary);
}

.radar-report-item .value.green { color: var(--accent); }
.radar-report-item .value.warn { color: var(--warn); }

.radar-progress-bar {
  margin-top: 16px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.radar-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), rgba(0,245,212,0.4));
  transition: width 0.6s var(--ease);
}

/* ===== Radar CTA Button ===== */
.radar-cta {
  text-align: center;
  margin-top: 40px;
  animation: fadeInUp 0.8s var(--ease) forwards;
}

.radar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 1px solid rgba(0,245,212,0.3);
  border-radius: var(--radius);
  background: rgba(0,245,212,0.06);
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 0 20px rgba(0,245,212,0.08);
}

.radar-cta-btn:hover {
  background: rgba(0,245,212,0.12);
  border-color: rgba(0,245,212,0.5);
  box-shadow: 0 0 40px rgba(0,245,212,0.15);
  transform: translateY(-2px);
}

/* ===== Revenue CTA Button ===== */
.revenue-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 36px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  background: rgba(212,175,55,0.06);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.5px;
}

.revenue-cta-btn:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 30px rgba(212,175,55,0.1);
  transform: translateY(-2px);
}

/* ===== Passport Form (Redesigned) ===== */
.passport-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.passport-header {
  text-align: center;
  margin-bottom: 40px;
}

.passport-header-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
}

.passport-header-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-secondary);
}

.passport-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.passport-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 20px;
}

.passport-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(0,245,212,0.15);
  border-radius: 100px;
  background: rgba(0,245,212,0.04);
  font-size: 13px;
  color: var(--accent);
}

.passport-notice-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Form Modules */
.form-module {
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
}

.form-module-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.form-module-num {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(0,245,212,0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-module-title {
  font-size: 16px;
  font-weight: 600;
}

.required { color: var(--warn); font-size: 12px; }

/* Contact Tabs */
.contact-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-tab {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
}

.contact-tab:hover { border-color: var(--border-hover); }

.contact-tab.active {
  background: rgba(0,245,212,0.08);
  border-color: rgba(0,245,212,0.25);
  color: var(--accent);
}

/* Form Input Box */
.form-input-box {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
}

.form-input-box:focus {
  border-color: rgba(0,245,212,0.3);
}

.form-input-box::placeholder {
  color: var(--text-tertiary);
}

/* Form Select */
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select:focus { border-color: rgba(0,245,212,0.3); }

.form-select option {
  background: #111827;
  color: var(--text-primary);
}

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  resize: vertical;
  line-height: 1.7;
  transition: border-color 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
}

.form-textarea:focus { border-color: rgba(0,245,212,0.3); }

.form-textarea::placeholder {
  color: var(--text-tertiary);
  white-space: pre-line;
}

.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.form-hint-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* Urgency Cards */
.urgency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.urgency-card {
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.urgency-card:hover { border-color: var(--border-hover); }

.urgency-card.active {
  background: rgba(0,245,212,0.06);
  border-color: rgba(0,245,212,0.25);
}

.urgency-card input[type="radio"] { display: none; }

.urgency-icon { font-size: 20px; }

.urgency-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.urgency-desc {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* Agreement */
.form-agreement {
  margin-bottom: 20px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] { display: none; }

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-hover);
  border-radius: 3px;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}

.form-checkbox input:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.form-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.link-accent {
  color: var(--accent);
  text-decoration: none;
}

.link-accent:hover { text-decoration: underline; }

/* Submit Button Full */
.submit-btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-family: 'Inter', sans-serif;
}

.submit-btn-full:hover {
  background: #00e0c0;
  box-shadow: 0 0 40px var(--accent-dim);
  transform: translateY(-1px);
}

.submit-btn-full svg {
  stroke: var(--bg-deep);
}

/* Form Error Message */
.form-error-msg {
  display: none;
  color: #FF3B30;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255,59,48,0.2);
  border-radius: 6px;
  background: rgba(255,59,48,0.05);
  animation: fadeSlideUp 0.3s var(--ease);
}

/* Shake Animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* Passport Redirect (post-submit) */
.passport-redirect {
  display: none;
  text-align: center;
  margin-top: 32px;
  padding: 32px;
  border: 1px solid rgba(0,245,212,0.15);
  border-radius: 8px;
  background: rgba(0,245,212,0.03);
  animation: fadeSlideUp 0.6s var(--ease);
}

.passport-redirect.visible { display: block; }

.redirect-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.redirect-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.redirect-success p {
  font-size: 14px;
  color: var(--text-primary);
}

.redirect-btn {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0,245,212,0.25);
  color: var(--accent);
}

.redirect-btn:hover {
  background: rgba(0,245,212,0.06);
  border-color: rgba(0,245,212,0.4);
  box-shadow: 0 0 30px var(--accent-dim);
}

.redirect-btn .arrow {
  transition: transform 0.3s var(--ease);
}

.redirect-btn:hover .arrow { transform: translateX(4px); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
    --card-pad: 28px;
  }

  .container { padding: 0 20px; }

  .hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 15px; }
  .hero-card { padding: 24px; }
  .hero-cta-btn { padding: 12px 24px; font-size: 13px; }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proof-grid .phone-col { order: -1; }

  .phone-frame {
    width: 300px;
    height: 620px;
  }

  .phone-frame-lg {
    width: 340px;
    height: 700px;
  }

  .section-title { font-size: 24px; }

  .accordion-header { padding: 20px; flex-wrap: wrap; }
  .accordion-amount { font-size: 24px; padding-left: 0; padding-top: 8px; }
  .accordion-body-inner { padding: 0 20px 20px; padding-top: 16px; }

  .card-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-card-title { font-size: 14px; padding: 12px 16px 0; }
  .gallery-card-desc { font-size: 12px; padding: 6px 16px 16px; }

  .lightbox-img-wrap { max-width: 95vw; }
  .lightbox-img-wrap img { max-height: 70vh; }

  .contact-tabs { flex-wrap: wrap; }
  .urgency-cards { grid-template-columns: 1fr; }
  .radar-report-grid { grid-template-columns: 1fr; }
  .passport-title { font-size: 22px; }
  .form-module { padding: 16px; }

  .form-radio-group { flex-direction: column; gap: 16px; }

  .revenue-title { font-size: 22px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-frame-lg {
    width: 360px;
    height: 740px;
  }
}
