:root {
  --bg: #0a0f1a;
  --bg-card: rgba(17, 24, 39, 0.72);
  --bg-surface: #1a2234;
  --text: #f0f4f8;
  --text-light: #94a3b8;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.15);
  --border: rgba(255,255,255,0.08);
  --glass-hi: rgba(255,255,255,0.06);
  --glass-lo: rgba(255,255,255,0.02);
}

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

body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 980px;
}

.header-inner {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 36px; display: block; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

nav { display: flex; align-items: center; gap: 6px; }

nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}

nav a:hover { background: var(--bg-surface); color: var(--text); }

nav a.cta {
  background: var(--accent);
  color: #0a0f1a;
  font-weight: 600;
  margin-left: 8px;
}

nav a.cta:hover { background: var(--accent-hover); }

/* HERO */
.hero {
  padding: 170px 0 110px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  position: relative;
}

.hero h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0f1a;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  position: relative;
}

.hero-cta:hover { 
  background: var(--accent-hover); 
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* SECTIONS */
section { padding: 100px 0; }

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 16px;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 220px at 20% 0%, rgba(34,197,94,0.14), rgba(34,197,94,0) 55%);
  pointer-events: none;
  opacity: .9;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

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

/* OD1N SECTION */
.odin {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.odin::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.odin-content { max-width: 540px; position: relative; }

.odin h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.odin h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.odin p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 16px;
}

.odin-link {
  color: var(--accent);
  font-weight: 600;
}

.odin-badge {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 24px 32px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.odin-badge span {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.odin-badge strong {
  color: var(--accent);
  font-size: 15px;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-section h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 17px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-brand .logo img { height: 36px; }
.footer-brand .logo .logo-text { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.footer-brand p {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

/* PAGE HERO */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}

.page-hero h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* CONTENT GRID */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-text h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.content-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-top: 24px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.features-list li:last-child { border-bottom: none; }

.check { color: var(--accent); font-weight: 700; }

.content-visual {
  background: linear-gradient(135deg, var(--bg-surface), #1e293b);
  border: 1px solid var(--border);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0f1a;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step { text-align: center; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  color: var(--accent);
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-light);
  font-size: 14px;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0f1a;
  font-weight: 700;
  font-size: 20px;
}

.team-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* STORY */
.story {
  max-width: 700px;
  margin: 0 auto;
}

.story h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.story h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.story p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value {
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.value h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value p {
  color: var(--text-light);
  font-size: 15px;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s;
  background: var(--bg-surface);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-info h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; }

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-content p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}

.info-content a { color: var(--accent); }
.info-content a:hover { text-decoration: underline; }

/* ALT SECTION */
section.alt {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
}

/* INTEGRATIONS */
.integrations {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.integration {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .odin { flex-direction: column; text-align: center; padding: 40px 32px; }
  .odin-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  header { top: 12px; width: calc(100% - 24px); }
  .header-inner { padding: 6px 6px 6px 16px; }
  nav a:not(.cta) { display: none; }
  .hero { padding: 130px 0 70px; }
  .hero h1 { font-size: 36px; }
  section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 130px 0 60px; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .contact-form { padding: 28px; }
}

/* ========== SEO CONTENT ========== */
.seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.seo-content h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.seo-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.seo-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.seo-content ul, .seo-content ol {
  color: var(--text-light);
  margin: 20px 0;
  padding-left: 24px;
}

.seo-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.seo-content a {
  color: var(--accent);
}

.seo-content a:hover {
  text-decoration: underline;
}

.seo-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--text);
  font-style: italic;
}

.seo-content img {
  border-radius: 16px;
  margin: 24px 0;
}

/* ========== LINKS GRID ========== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.link-card {
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo)), var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  text-align: center;
}

.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--accent);
}

@media (max-width: 900px) {
  .links-grid { grid-template-columns: repeat(2, 1fr); }
}

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