/* Applimatix — website styles */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #F5F3FF;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #14122A;
  overflow-x: hidden;
}

@keyframes drawPath {
  from { stroke-dashoffset: 260; }
  to   { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ambientPulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes checkDraw {
  from { stroke-dashoffset: 40; }
  to   { stroke-dashoffset: 0; }
}

/* Shared containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.legal__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}

.gradient-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

#scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 60px;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 200;
  background: #14122A;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 180ms ease;
}
.skip-link:focus {
  top: 12px;
}

.nav__link:focus-visible,
.nav__logo:focus-visible,
.nav__cta:focus-visible,
.nav__toggle:focus-visible,
.hero__btn-primary:focus-visible,
.hero__btn-secondary:focus-visible,
.contact__submit:focus-visible,
.footer__link:focus-visible {
  outline: 2px solid rgba(108,99,255,0.6);
  outline-offset: 3px;
}

/* .apps__list clips overflow for its rounded card stack, so this ring
   sits inset rather than offset to avoid being clipped on the sides. */
.apps__card--respoke:focus-visible {
  outline: 2px solid rgba(108,99,255,0.6);
  outline-offset: -4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════ */
/* NAV                                              */
/* ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: all 320ms cubic-bezier(0.4,0,0.2,1);
}
.nav--scrolled {
  background: rgba(245,243,255,0.88);
  border-bottom: 1px solid rgba(228,223,247,0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #14122A;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #726F98;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 180ms ease;
}
.nav__link:hover {
  color: #14122A;
  background: rgba(20,18,42,0.05);
}
.nav__divider {
  width: 1px;
  height: 20px;
  background: #E4DFF7;
  margin: 0 6px;
}
.nav__cta {
  background: linear-gradient(135deg,#6C63FF,#00D4FF);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 9px 20px;
  border-radius: 9999px;
  transition: filter 200ms ease;
}
.nav__cta:hover {
  filter: brightness(1.1);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle-bar {
  width: 22px;
  height: 2px;
  background: #14122A;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════ */
/* PAGE BODY                                        */
/* ═══════════════════════════════════════════════ */
.page {
  padding-top: 72px;
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  background: #F5F3FF;
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero__orb-a {
  position: absolute;
  top: 20%; left: 10%;
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.11) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientPulse 9s ease-in-out infinite;
}
.hero__orb-b {
  position: absolute;
  top: 35%; right: 5%;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientPulse 13s ease-in-out infinite 4s;
}
.hero__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__eyebrow-wrap {
  display: inline-flex;
}
.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #6C63FF;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.28);
  padding: 7px 16px;
  border-radius: 9999px;
}
.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -3.2px;
  line-height: 1.0;
  margin: 0;
  color: #14122A;
}
.hero__lead {
  font-size: 19px;
  line-height: 1.72;
  color: #4E4B72;
  margin: 0;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__btn-primary {
  background: linear-gradient(135deg,#6C63FF,#00D4FF);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
  transition: all 250ms ease;
}
.hero__btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 28px rgba(108,99,255,0.5);
  transform: translateY(-1px);
}
.hero__btn-secondary {
  background: transparent;
  border: 1.5px solid #DCD5F5;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5A5780;
  padding: 14px 30px;
  border-radius: 9999px;
  transition: all 250ms ease;
}
.hero__btn-secondary:hover {
  border-color: rgba(108,99,255,0.5);
  color: #14122A;
  background: rgba(108,99,255,0.07);
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__visual-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(108,99,255,0.16) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: ambientPulse 7s ease-in-out infinite;
}
.hero__icon-draw {
  animation: drawPath 2s cubic-bezier(0.4,0,0.2,1) both 0.5s;
}
.hero__icon-dot {
  animation: fadeIn 0.6s ease both 2.4s;
}

/* ─── APPS PORTFOLIO ─────────────────────────── */
.apps {
  padding: 120px 0;
  background: #FFFFFF;
}
.apps__header {
  margin-bottom: 64px;
}
.apps__title {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 0 0 18px;
  line-height: 1.05;
  color: #14122A;
}
.apps__lead {
  font-size: 18px;
  color: #4E4B72;
  margin: 0;
  max-width: 500px;
  line-height: 1.65;
}
.apps__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 16px;
  overflow: hidden;
}
.apps__card--respoke {
  background: #FBFAFF;
  border: 1px solid #E6E1FA;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  font: inherit;
  text-align: left;
  transition: all 250ms ease;
  cursor: pointer;
}
.apps__card--respoke:hover {
  background: #FFF3EB;
  border-color: rgba(255,107,0,0.32);
  box-shadow: 0 0 32px rgba(255,107,0,0.12);
}
.apps__card-icon {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.apps__card-body {
  display: block;
  flex: 1;
  min-width: 0;
}
.apps__card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.apps__card-name {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #14122A;
  letter-spacing: -0.5px;
}
.apps__card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0,212,255,0.12);
  color: #00D4FF;
  border: 1px solid rgba(0,212,255,0.28);
}
.apps__card-badge--pending {
  background: rgba(255,107,0,0.10);
  color: #FF6B00;
  border-color: rgba(255,107,0,0.28);
}
.apps__card-desc {
  display: block;
  font-size: 16px;
  color: #5A5780;
  margin: 0;
  line-height: 1.55;
}
.apps__card-meta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.apps__card-meta-group {
  display: block;
}
.apps__card-meta-label {
  display: block;
  font-size: 12px;
  color: #A29DC8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.apps__card-meta-value {
  display: block;
  font-size: 14px;
  color: #6888AA;
  font-weight: 500;
}
.apps__card-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid #DCD5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apps__card--soon {
  background: #FFFFFF;
  border: 1px solid #F1ECFF;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 3px;
}
.apps__card-body--soon {
  flex: 1;
}
.apps__card-icon--soon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #F7F5FF;
  border: 1px dashed #D8D2F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apps__card-heading--soon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.apps__card-name--soon {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #B8B4DC;
  letter-spacing: -0.3px;
}
.apps__card-badge--soon {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #FFFFFF;
  color: #B8B4DC;
  border: 1px solid #1C1C2C;
}
.apps__card-desc--soon {
  font-size: 15px;
  color: #C4C0E4;
  margin: 0;
  line-height: 1.55;
}

/* ─── RESPOKE DETAIL ─────────────────────────── */
.respoke {
  padding: 120px 0;
  background: #F5F3FF;
  position: relative;
  overflow: hidden;
}
.respoke__orb-a {
  position: absolute;
  top: 20%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite;
}
.respoke__orb-b {
  position: absolute;
  bottom: 10%; left: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite 2s;
}
.respoke__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}
.respoke__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 80px;
}
.respoke__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.respoke__icon-wrap {
  position: relative;
}
.respoke__icon-glow {
  position: absolute;
  inset: -32px;
  background: radial-gradient(circle, rgba(255,107,0,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.respoke__name {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2.5px;
  color: #14122A;
  line-height: 1;
}
.respoke__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,107,0,0.08);
  color: #FF6B00;
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 9999px;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.respoke__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #FF6B00;
  box-shadow: 0 0 0 4px rgba(255,107,0,0.18);
}
.respoke__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.respoke__heading {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin: 0;
  line-height: 1.1;
  color: #14122A;
}
.respoke__paragraph {
  font-size: 18px;
  line-height: 1.75;
  color: #4E4B72;
  margin: 0;
}
.respoke__paragraph--muted {
  font-size: 16px;
  line-height: 1.7;
  color: #726F98;
  margin: 0;
}
.respoke__features {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  border-radius: 16px;
  overflow: hidden;
}
.respoke__features > :nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}
.respoke__features > :nth-child(2) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.respoke__features > :nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.respoke__feature {
  background: #FFFFFF;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 250ms ease;
}
.respoke__feature:hover {
  background: #F1ECFF;
}
.respoke__feature--alt {
  background: #F7F5FF;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  transition: all 250ms ease;
}
.respoke__feature--alt:hover {
  background: #EDE8FE;
}
.respoke__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.respoke__feature-icon--violet {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.respoke__feature-icon--mixed {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.respoke__feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #14122A;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.respoke__feature-desc {
  font-size: 14px;
  color: #726F98;
  line-height: 1.65;
  margin: 0;
}

/* ─── ABOUT ──────────────────────────────────── */
.about {
  padding: 120px 0;
  background: #FFFFFF;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about__story {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about__title {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.8px;
  margin: 0 0 20px;
  line-height: 1.05;
  color: #14122A;
}
.about__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about__author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg,#6C63FF,#00D4FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__author-initials {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.about__author-name {
  font-size: 14px;
  color: #5A5780;
}
.about__author-name-strong {
  color: #14122A;
  font-weight: 600;
}
.about__paragraph {
  font-size: 18px;
  line-height: 1.78;
  color: #4E4B72;
  margin: 0;
}
.about__paragraph--muted {
  font-size: 17px;
  line-height: 1.78;
  color: #726F98;
  margin: 0;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 28px;
}
.about__value--top {
  background: #FFFFFF;
  border-radius: 12px 12px 0 0;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 250ms ease;
}
.about__value--top:hover {
  background: #F1ECFF;
}
.about__value--alt {
  background: #F7F5FF;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 250ms ease;
}
.about__value--alt:hover {
  background: #EDE8FE;
}
.about__value--bottom {
  background: #FFFFFF;
  border-radius: 0 0 12px 12px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 250ms ease;
}
.about__value--bottom:hover {
  background: #F1ECFF;
}
.about__value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__value-icon--cyan {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__value-icon--violet-soft {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__value-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #14122A;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.about__value-desc {
  font-size: 14px;
  color: #726F98;
  line-height: 1.65;
  margin: 0;
}

/* ─── CONTACT ────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: #F5F3FF;
  position: relative;
  overflow: hidden;
}
.contact__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.contact__container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.contact__title {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.8px;
  margin: 0 0 16px;
  line-height: 1.05;
  color: #14122A;
}
.contact__lead {
  font-size: 17px;
  color: #4E4B72;
  line-height: 1.7;
  margin: 0 0 52px;
}
.contact__success {
  text-align: center;
  padding: 60px 40px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E6E1FA;
}
.contact__success[hidden] {
  display: none;
}
.contact__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact__success-check {
  animation: checkDraw 0.5s ease both;
}
.contact__success-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #14122A;
  margin-bottom: 10px;
}
.contact__success-desc {
  font-size: 16px;
  color: #726F98;
  margin: 0;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form[hidden] {
  display: none;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field__label {
  font-size: 13px;
  font-weight: 500;
  color: #5A5780;
  letter-spacing: 0.2px;
}
.form-field__input {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #14122A;
  background: #FBFAFF;
  border: 1.5px solid #DCD5F5;
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 180ms ease;
}
.form-field__input:focus {
  border-color: rgba(108,99,255,0.6);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}
.form-field__textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #14122A;
  background: #FBFAFF;
  border: 1.5px solid #DCD5F5;
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color 180ms ease;
  line-height: 1.6;
}
.form-field__textarea:focus {
  border-color: rgba(108,99,255,0.6);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}
.contact__submit {
  background: linear-gradient(135deg,#6C63FF,#00D4FF);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 15px 32px;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
  transition: all 250ms ease;
  align-self: flex-start;
}
.contact__submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 28px rgba(108,99,255,0.5);
  transform: translateY(-1px);
}

/* ─── PRIVACY / TERMS ─────────────────────────── */
.privacy {
  padding: 96px 0;
  background: #FFFFFF;
  border-top: 1px solid #FFFFFF;
}
.terms {
  padding: 96px 0;
  background: #F5F3FF;
  border-top: 1px solid #FFFFFF;
}
.legal__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin: 0 0 12px;
  color: #14122A;
}
.legal__updated {
  font-size: 13px;
  color: #A29DC8;
  margin: 0 0 40px;
}
.legal__sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.legal__sections--terms {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.legal__heading {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #4840CC;
  margin: 0 0 10px;
}
.legal__text {
  font-size: 15px;
  color: #726F98;
  line-height: 1.75;
  margin: 0;
}
.legal__text--spaced {
  font-size: 15px;
  color: #726F98;
  line-height: 1.75;
  margin: 0 0 10px;
}
.legal__email {
  color: #6C63FF;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid #FFFFFF;
  background: #F5F3FF;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #14122A;
}
.footer__tagline {
  font-size: 13px;
  color: #B8B4DC;
  margin: 0;
  line-height: 1.5;
}
.footer__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #B8B4DC;
  padding: 4px 0;
  transition: color 180ms;
}
.footer__link:hover {
  color: #5A5780;
}
.footer__meta {
  text-align: right;
}
.footer__copyright {
  font-size: 12px;
  color: #B0ACD4;
  margin: 0;
}
.footer__made {
  font-size: 11px;
  color: #C0BCE0;
  margin: 6px 0 0;
}

/* ═══════════════════════════════════════════════ */
/* RESPONSIVE                                       */
/* ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .hero__grid { padding: 0 40px; gap: 56px; }
  .hero__title { font-size: 56px; letter-spacing: -2.4px; }
  .apps__title, .about__title, .contact__title { font-size: 40px; }
  .respoke__container { padding: 0 40px; }
  .respoke__hero { gap: 56px; }
  .respoke__name { font-size: 44px; }
  .respoke__heading { font-size: 34px; }
  .respoke__features { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .respoke__features > :nth-child(1),
  .respoke__features > :nth-child(2) { grid-column: auto; grid-row: auto; }
  .respoke__features > :nth-child(3) { grid-column: 1 / -1; grid-row: auto; }
  .about__grid { gap: 56px; }
  .footer__inner { padding: 48px 40px; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 20px; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(245,243,255,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(228,223,247,0.8);
    padding: 12px 20px 20px;
  }
  .nav__links--open { display: flex; }
  .nav__link { text-align: left; padding: 12px 14px; }
  .nav__divider { display: none; }
  .nav__cta { text-align: center; }

  .container { padding: 0 24px; }
  .legal__container { padding: 0 24px; }

  .hero { padding: 64px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; padding: 0 24px; gap: 48px; }
  .hero__visual svg { width: 220px; height: 220px; }
  .hero__visual-glow { width: 320px; height: 320px; }
  .hero__title { font-size: 40px; letter-spacing: -1.6px; }
  .hero__lead { max-width: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__btn-primary, .hero__btn-secondary { text-align: center; }

  .apps { padding: 80px 0; }
  .apps__title { font-size: 34px; }
  .apps__card--respoke, .apps__card--soon {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  .apps__card-meta { width: 100%; justify-content: space-between; }

  .respoke { padding: 80px 0; }
  .respoke__container { padding: 0 24px; }
  .respoke__hero { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
  .respoke__name { font-size: 38px; }
  .respoke__heading { font-size: 30px; }
  .respoke__features { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__title { font-size: 34px; }
  .about__values { padding-top: 0; }

  .contact { padding: 80px 0; }
  .contact__container { padding: 0 24px; }
  .contact__title { font-size: 34px; }
  .contact__row { grid-template-columns: 1fr; }

  .privacy, .terms { padding: 64px 0; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 40px 24px;
  }
  .footer__brand { align-items: center; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
  .footer__meta { text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .apps__title, .about__title, .contact__title { font-size: 28px; }
  .respoke__name { font-size: 30px; }
  .respoke__heading { font-size: 26px; }
  .nav__logo-text { font-size: 16px; }
}
