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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1A0B2E;
  color: #ffffff;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none !important;
}

:root {
  --color-bg: #1A0B2E;
  --color-primary: #FF71CE;
  --color-secondary: #01CDFE;
  --color-accent: #FFFB96;
  --color-text: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.7);
  --color-border: rgba(255, 255, 255, 0.15);

  --font-heading: "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease;

  --container-width: 1200px;

  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #2a1450, #1A0B2E 60%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-text);
  word-break: break-word;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--color-muted);
  max-width: 70ch;
  word-break: break-word;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex {
  display: flex;
  gap: var(--space-md);
  min-width: 0;
}

.flex > * {
  min-width: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.split {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.left-panel {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.main-panel {
  padding: var(--space-lg);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
  }
}

.footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  flex-wrap: wrap;
}

.button:hover {
  opacity: 0.9;
}

.button-outline {
  background: transparent;
  border-color: var(--color-primary);
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  max-width: 100%;
}

.section-intro {
  max-width: 820px;
  margin-bottom: var(--space-lg);
}

.section-kicker,
.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-card {
  border-color: rgba(255, 251, 150, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 113, 206, 0.08), rgba(1, 205, 254, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.feature-list {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 14px rgba(1, 205, 254, 0.7);
}

.steps-grid {
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  font-weight: 800;
}

.band {
  border-block: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.025);
}

.quote-panel {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-left: 3px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.035);
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.mini-meta span {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.035);
}

.faq-list {
  display: grid;
  gap: var(--space-md);
}

.faq-item h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
}

textarea {
  resize: vertical;
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

.table th,
.table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  word-break: break-word;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.hero-media {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding-block: var(--space-xl);
}

.wrap-text {
  overflow-wrap: break-word;
  word-break: break-word;
}

.max-width {
  max-width: 100%;
}

.no-overflow {
  overflow-x: hidden;
}
