/* ============================================
   FLUESSENT — Core Stylesheet
   Palette: 60% deep violet / 30% turquoise / 10% accents
   ============================================ */

:root {
  /* ——— PRIMARY (60%) — Deep violet from logo top ——— */
  --violet-deep: #5b3ea8;
  --violet-mid: #6b4fc7;
  --violet-soft: #8b5fd4;
  --violet-mist: #a58adf;

  /* ——— SECONDARY (30%) — Turquoise from logo bottom ——— */
  --turquoise-deep: #2a8db0;
  --turquoise-mid: #3aa5c9;
  --turquoise-soft: #4db8d6;
  --turquoise-mist: #7fd1e6;

  /* ——— ACCENTS (10%) — Soft transitions and highlights ——— */
  --accent-rose: #d4a5d9;
  --accent-mint: #a8e0d3;
  --accent-moon: #fdfbff;
  --accent-pearl: #f5f0fa;

  /* ——— NEUTRALS ——— */
  --ink: #1a0f2e;
  --ink-soft: #2d1f4a;
  --paper: #ffffff;
  --whisper: rgba(255, 255, 255, 0.08);
  --whisper-strong: rgba(255, 255, 255, 0.15);

  /* ——— GRADIENTS ——— */
  --grad-hero: linear-gradient(180deg, #6b4fc7 0%, #7a5acb 35%, #5a9ac7 75%, #3aa5c9 100%);
  --grad-soft: linear-gradient(160deg, #8b5fd4 0%, #4db8d6 100%);
  --grad-veil: linear-gradient(180deg, rgba(91, 62, 168, 0.0) 0%, rgba(91, 62, 168, 0.4) 100%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);

  /* ——— TYPE ——— */
  --font-display: 'Inter', 'DM Sans', -apple-system, sans-serif;
  --font-body: 'Inter', 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --text-normal: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-muted-strong: #4A3B6B;
  --text-on-light: #1A0F2E;
  --link-turquoise: #3AA5C9;
  --link-turquoise-hover: #2A7A94;

  /* ——— SPACE & SHAPE ——— */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-soft: 0 20px 60px -20px rgba(26, 15, 46, 0.4);
  --shadow-glow: 0 0 80px rgba(139, 95, 212, 0.35);
  --shadow-moon: 0 0 60px rgba(253, 251, 255, 0.45);

  /* ——— MOTION ——— */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-normal);
  background: var(--violet-deep);
  overflow-x: hidden;
  min-height: 100vh;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric background — painted gradient matching the logo */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 95, 212, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(77, 184, 214, 0.85) 0%, transparent 55%),
    linear-gradient(180deg, #5b3ea8 0%, #6b4fc7 35%, #4a8fb8 70%, #3aa5c9 100%);
  z-index: -2;
}

/* Subtle grain texture for tactile quality */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link-turquoise);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

a:hover {
  color: var(--link-turquoise-hover);
  text-decoration: underline;
}

.hero-cta,
.nav-cta {
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-normal);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

p {
  font-weight: 400;
  color: var(--text-normal);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--turquoise-mist);
  display: inline-block;
  padding-bottom: 1rem;
  position: relative;
}

.eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 32px;
  height: 1px;
  background: var(--turquoise-mist);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(26, 15, 46, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(139, 95, 212, 0.5);
  transition: transform 0.5s var(--ease-out);
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0%, transparent 40%),
    linear-gradient(180deg, #8b5fd4 0%, #4db8d6 100%);
}

.logo-link:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.wordmark {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.45rem;
  color: var(--accent-moon);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  background: linear-gradient(135deg, #ffffff 0%, #a8e0d3 50%, #7fd1e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: letter-spacing 0.4s var(--ease-out);
}

.wordmark:hover {
  letter-spacing: 0.12em;
}

/* İçerideki span'ı nötralize et — artık tek bir wordmark olarak gözükecek */
.wordmark span {
  color: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wordmark span {
  color: var(--turquoise-mist);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--link-turquoise);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--link-turquoise);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--link-turquoise-hover);
  text-decoration: underline;
}

.nav-cta {
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--accent-moon);
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--accent-moon);
  color: var(--violet-deep);
  border-color: var(--accent-moon);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--accent-moon);
}

/* ============================================
   HERO — the emotional opener
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-mark {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-glow), var(--shadow-moon);
  animation: breathe 6s ease-in-out infinite, fadeUp 1s var(--ease-out) both;
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0%, #fdfbff 15%, transparent 40%),
    linear-gradient(180deg, #8b5fd4 0%, #4db8d6 100%);
  position: relative;
}

.hero-mark::before {
  content: '';
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, rgba(253, 251, 255, 0.95) 0%, rgba(253, 251, 255, 0.6) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.hero h1 .script {
  font-style: italic;
  font-weight: 300;
  display: block;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--text-normal);
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.4rem;
  background: var(--accent-moon);
  color: var(--violet-deep);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all 0.4s var(--ease-out);
  animation: fadeUp 1s var(--ease-out) 0.6s both;
  box-shadow: 0 20px 50px -15px rgba(253, 251, 255, 0.5);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -15px rgba(253, 251, 255, 0.6);
}

.hero-cta svg {
  transition: transform 0.3s var(--ease-out);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  animation: fadeIn 2s ease 1.2s both, float 3s ease-in-out infinite 2s;
}

/* Floating ambient moon particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-moon);
  border-radius: 50%;
  opacity: 0.4;
  animation: drift 20s linear infinite;
}

/* ============================================
   SECTION — philosophy
   ============================================ */

.philosophy {
  text-align: center;
}

.philosophy h2 {
  max-width: 900px;
  margin: 1.5rem auto 3rem;
  font-style: italic;
  font-weight: 300;
}

.philosophy h2 em {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-style: italic;
}

.philosophy-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise-mist), transparent);
  margin: 3rem auto;
}

/* ============================================
   SECTION — pillars (3-column)
   ============================================ */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.pillar {
  padding: 2rem 1.5rem;
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise-mist), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 209, 230, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--turquoise-mist);
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  display: block;
}

.pillar h3 {
  margin-bottom: 1rem;
  font-weight: 400;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   SECTION — split layout (image + text)
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-soft);
  box-shadow: var(--shadow-soft);
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(253, 251, 255, 0.85) 0%, transparent 25%),
    radial-gradient(ellipse at 50% 80%, rgba(77, 184, 214, 0.6) 0%, transparent 50%);
}

.split-visual-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.split-text h2 {
  margin: 1rem 0 1.5rem;
}

.split-text p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* ============================================
   FORMS — contact & careers
   ============================================ */

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem;
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise-mist);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent-moon);
  transition: all 0.3s var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6B5B8A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquoise-mist);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(127, 209, 230, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237fd1e6' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--violet-deep);
  color: var(--accent-moon);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-error {
  color: #ffb8c8;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  min-height: 1em;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--accent-moon);
  color: var(--violet-deep);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.4s var(--ease-out);
  margin-top: 0.8rem;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -15px rgba(253, 251, 255, 0.5);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  padding: 1rem 1.2rem;
  background: rgba(127, 209, 230, 0.15);
  border: 1px solid rgba(127, 209, 230, 0.4);
  border-radius: var(--radius-md);
  color: var(--accent-moon);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s var(--ease-out);
}

/* Contact side info */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin: 1rem 0 2rem;
}

.contact-channels {
  list-style: none;
  margin-top: 3rem;
}

.contact-channels li {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channels li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channel-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--turquoise-mist);
  margin-bottom: 0.3rem;
  display: block;
}

.contact-channel-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent-moon);
  font-style: italic;
}

.contact-channel-value:hover {
  color: var(--turquoise-mist);
}

/* ============================================
   CAREER CARDS
   ============================================ */

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 4rem 0 5rem;
}

.role-card {
  padding: 2rem;
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 209, 230, 0.3);
}

.role-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.role-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(127, 209, 230, 0.1);
  color: var(--turquoise-mist);
  border: 1px solid rgba(127, 209, 230, 0.25);
}

.role-tag.rose {
  background: rgba(212, 165, 217, 0.1);
  color: var(--accent-rose);
  border-color: rgba(212, 165, 217, 0.3);
}

.role-card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0.8rem;
}

.role-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-normal);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise-mist);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-normal);
}

.footer-col a:hover {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ============================================
   ABOUT PAGE specifics
   ============================================ */

.page-header {
  padding: 14rem 0 5rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-header p {
  max-width: 620px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.values-list {
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
}

.values-list li {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.values-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.values-list .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--turquoise-mist);
  line-height: 1;
  font-weight: 300;
}

.values-list h3 {
  margin-bottom: 0.8rem;
}

.values-list p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes breathe {

  0%,
  100% {
    box-shadow: 0 0 80px rgba(139, 95, 212, 0.35), 0 0 60px rgba(253, 251, 255, 0.45);
  }

  50% {
    box-shadow: 0 0 120px rgba(139, 95, 212, 0.55), 0 0 90px rgba(253, 251, 255, 0.65);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes drift {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  section {
    padding: 5rem 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 15, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .form-wrap {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .values-list li {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

@media (max-width: 560px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-mark {
    width: 90px;
    height: 90px;
  }

  .page-header {
    padding: 10rem 0 3rem;
  }

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

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}