:root {
  --primary: #5022b3;
  --secondary: #8f6ae3;
  --teal: #3ba8a0;
  --teal-soft: #7ccbc3;
  --ink: #323232;
  --muted: #666272;
  --soft: #f8f6ff;
  --paper: #fbfaf5;
  --sage: #eef6ef;
  --teal-bg: #e5f6f4;
  --line: #ddd7ea;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(50, 35, 90, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: 100vw;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 215, 234, 0.7);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 168px;
  max-width: 38vw;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
  gap: clamp(14px, 2.4vw, 34px);
  color: #4c465a;
  font-size: 15px;
  font-weight: 600;
}

.nav a:not(.button),
.nav-menu summary {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.nav a:not(.button):hover,
.nav-menu summary:hover {
  color: var(--primary);
}

.nav .button.primary:hover {
  color: var(--white);
}

.nav a.active,
.nav-menu summary.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
}

.nav-menu summary:focus-visible,
.language-switcher:focus-visible {
  outline: 2px solid rgba(80, 34, 179, 0.32);
  outline-offset: 4px;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu-list {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  display: grid;
  min-width: 220px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-menu-list a {
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 6px;
}

.nav-menu-list a:hover,
.nav-menu-list a.active {
  color: var(--primary);
  background: var(--soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(50, 35, 90, 0.08);
}

.language-switcher:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.flag {
  display: block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.flag-se {
  background:
    linear-gradient(to right, transparent 0 30%, #fecc00 30% 42%, transparent 42%),
    linear-gradient(to bottom, transparent 0 38%, #fecc00 38% 58%, transparent 58%),
    #006aa7;
}

.flag-gb {
  background:
    linear-gradient(34deg, transparent 0 40%, #ffffff 40% 47%, #c8102e 47% 53%, #ffffff 53% 60%, transparent 60%),
    linear-gradient(146deg, transparent 0 40%, #ffffff 40% 47%, #c8102e 47% 53%, #ffffff 53% 60%, transparent 60%),
    linear-gradient(to right, transparent 0 40%, #ffffff 40% 60%, transparent 60%),
    linear-gradient(to bottom, transparent 0 34%, #ffffff 34% 66%, transparent 66%),
    linear-gradient(to right, transparent 0 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(to bottom, transparent 0 43%, #c8102e 43% 57%, transparent 57%),
    #012169;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.button.primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(80, 34, 179, 0.22);
}

.button.secondary {
  color: var(--primary);
  background: var(--soft);
  border-color: #ded5f8;
}

.button.teal {
  color: #073f3a;
  background: var(--teal-bg);
  border-color: #c8ebe7;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 100vw;
  min-height: min(820px, calc(100vh - 76px));
  padding: clamp(120px, 14vw, 190px) clamp(20px, 5vw, 72px) clamp(44px, 7vw, 90px);
  overflow: hidden;
  color: var(--white);
  background: #211a2f;
}

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

.hero > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8de3db;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.page-label {
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.1vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
  max-width: 840px;
}

.proof-item {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.hero-image-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  background: #211a2f;
  box-shadow: none;
}

.hero-image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29, 22, 43, 0.84) 0%, rgba(29, 22, 43, 0.63) 36%, rgba(29, 22, 43, 0.22) 70%, rgba(29, 22, 43, 0.38) 100%),
    linear-gradient(180deg, rgba(29, 22, 43, 0.28) 0%, rgba(29, 22, 43, 0.08) 42%, rgba(29, 22, 43, 0.48) 100%);
}

.hero-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hero.sense-section .hero-image-panel img,
.hero.academy .hero-image-panel img {
  object-position: center;
}

.hero-care .hero-image-panel {
  display: block;
  padding: 0;
  background: #211a2f;
}

.hero-care .hero-image-panel::after {
  background:
    linear-gradient(90deg, rgba(25, 18, 38, 0.94) 0%, rgba(25, 18, 38, 0.78) 42%, rgba(25, 18, 38, 0.28) 76%, rgba(25, 18, 38, 0.18) 100%),
    linear-gradient(180deg, rgba(25, 18, 38, 0.2) 0%, rgba(25, 18, 38, 0.22) 100%);
}

.care-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(430px, 36vw);
  color: #2d2440;
}

.care-visual-card,
.care-visual-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(8, 7, 17, 0.22);
  backdrop-filter: blur(18px);
}

.care-visual-card.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #3a168e);
}

.care-visual-card.muted {
  background: rgba(244, 251, 250, 0.92);
}

.care-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.care-hero-visual span {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.care-hero-visual strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.visual-shell {
  position: relative;
  width: 100%;
  min-height: 560px;
}

.hero .visual-shell > .dashboard-card {
  width: min(100%, 560px);
  margin-left: auto;
}

.device-card {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(80, 34, 179, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 22px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7c9f7;
}

.dashboard-title {
  min-width: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.metric {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
}

.metric strong {
  display: block;
  color: var(--primary);
  font-size: 24px;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.care-list {
  display: grid;
  gap: 12px;
}

.care-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: #fbfaff;
  border: 1px solid #eee9fb;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--primary));
}

.care-row strong,
.care-row span {
  display: block;
}

.care-row span {
  color: var(--muted);
  font-size: 13px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: #eadffc;
  font-size: 12px;
  font-weight: 800;
}

.sense-card {
  position: absolute;
  right: -24px;
  bottom: 64px;
  width: min(330px, 68%);
  padding: 20px;
  border-color: rgba(59, 168, 160, 0.26);
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 88px;
  margin: 16px 0;
}

.signal-bars span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--teal-soft), var(--teal));
}

.signal-bars span:nth-child(1) { height: 28%; }
.signal-bars span:nth-child(2) { height: 64%; }
.signal-bars span:nth-child(3) { height: 42%; }
.signal-bars span:nth-child(4) { height: 82%; }
.signal-bars span:nth-child(5) { height: 55%; }
.signal-bars span:nth-child(6) { height: 70%; }
.signal-bars span:nth-child(7) { height: 34%; }

.observation {
  color: #32534f;
  font-size: 14px;
  font-weight: 700;
}

section {
  padding: clamp(66px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.purpose-section {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
  background: #fbfaff;
  border-top: 1px solid rgba(80, 34, 179, 0.08);
  border-bottom: 1px solid rgba(80, 34, 179, 0.08);
}

.purpose-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.purpose-inner h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
}

.purpose-copy > p {
  margin-bottom: 26px;
  color: #4d475c;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
}

.purpose-points {
  display: grid;
  gap: 14px;
}

.purpose-points div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(80, 34, 179, 0.14);
}

.purpose-points strong {
  color: var(--primary);
  font-size: 16px;
}

.purpose-points span {
  color: var(--muted);
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-panel {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(40, 30, 70, 0.07);
}

.product-panel h3 {
  margin: 20px 0 12px;
  font-size: 30px;
}

.product-panel p {
  color: var(--muted);
}

.product-panel .button {
  align-self: flex-start;
  margin-top: auto;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  color: var(--primary);
  background: var(--soft);
  font-size: 28px;
  font-weight: 900;
}

.product-icon.teal {
  color: #0f6f68;
  background: var(--teal-bg);
}

.product-icon.mixed {
  color: var(--primary);
  background: linear-gradient(135deg, #e4d8fb, #dbf3f0);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.split h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--soft);
}

.feature span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.screen-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.mock-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mock-tabs span {
  height: 38px;
  border-radius: var(--radius);
  background: #eee8fb;
}

.mock-content {
  display: grid;
  gap: 10px;
}

.mock-line {
  height: 66px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fbfaff, #f2ecff);
  border: 1px solid #eee9fb;
}

.app-proof-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(135deg, #fbfaff 0%, #ffffff 52%, #f1fffd 100%);
  border-bottom: 1px solid rgba(80, 34, 179, 0.08);
}

.app-proof-section::before {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(420px, 40vw);
  height: min(420px, 40vw);
  content: "";
  background: radial-gradient(circle, rgba(124, 203, 195, 0.28), transparent 68%);
  transform: translate(28%, 30%);
  pointer-events: none;
}

.app-proof-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.app-proof-inner h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
}

.app-proof-inner p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.care-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin-top: 30px;
}

.care-flow span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(80, 34, 179, 0.16);
  border-radius: var(--radius);
  color: #35284f;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(40, 30, 70, 0.06);
}

.phone-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.product-proof-panel {
  display: grid;
  gap: 12px;
  width: min(100%, 460px);
  padding: 18px;
  border: 1px solid rgba(80, 34, 179, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(40, 30, 70, 0.12);
  backdrop-filter: blur(18px);
}

.proof-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #eee9fb;
  border-radius: 14px;
  background: #ffffff;
}

.proof-row.active {
  border-color: rgba(80, 34, 179, 0.28);
  background: #f3edff;
}

.proof-row.teal {
  border-color: rgba(59, 168, 160, 0.28);
  background: #eaf8f6;
}

.proof-row strong {
  color: #2d2440;
  font-size: 17px;
}

.proof-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.sense-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 203, 195, 0.28), transparent 26%),
    #f4fbfa;
}

.sense-visual {
  border-color: rgba(59, 168, 160, 0.26);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #d2ece9;
}

.time {
  color: var(--teal);
  font-weight: 900;
}

.academy {
  background: linear-gradient(135deg, var(--soft), #ffffff);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: #eadffc;
  font-size: 13px;
  font-weight: 900;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 28px auto 0;
}

.value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(50, 35, 90, 0.08);
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 24px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 28px auto 0;
}

.founder-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.founder-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.founder-card p {
  margin-bottom: 14px;
  color: var(--muted);
}

.founder-card p:last-child {
  margin-bottom: 0;
}

.mission-note {
  max-width: 980px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
  text-align: center;
}

.legal-hero {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 12%, rgba(124, 203, 195, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fbfaff 52%, #eefaf8 100%);
}

.legal-hero h1,
.legal-hero .lead,
.legal-hero .legal-updated {
  max-width: 880px;
}

.legal-updated {
  margin-top: 26px;
  color: var(--muted);
  font-weight: 700;
}

.legal-page {
  padding-top: clamp(48px, 6vw, 84px);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.legal-content a {
  color: var(--primary);
  font-weight: 800;
}

.cta-band {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 16%, rgba(124, 203, 195, 0.32), transparent 28%),
    linear-gradient(135deg, #3e1f8a, var(--primary));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.03;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.cta-band .button {
  color: var(--primary);
  background: var(--white);
}

.contact-form-section {
  background: linear-gradient(135deg, #ffffff, var(--soft));
}

.contact-form {
  display: grid;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 500;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(80, 34, 179, 0.16);
  border-color: var(--primary);
}

.form-field input::placeholder {
  color: #8b8597;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #686078;
  background: #fbfaff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .nav-menu-list {
    top: calc(100% + 8px);
    left: 0;
  }

  .hero,
  .purpose-inner,
  .app-proof-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-image-panel {
    min-height: 100%;
    max-width: none;
  }

  .visual-shell {
    min-height: 480px;
  }

  .hero-image-panel {
    min-height: 460px;
  }

  .proof-strip,
  .care-flow,
  .values-grid,
  .product-grid,
  .founders {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 142px;
  }

  .nav {
    column-gap: 16px;
    row-gap: 4px;
    font-size: 14px;
  }

  .nav .button {
    display: none;
  }

  .nav-menu {
    position: static;
  }

  .nav-menu-list {
    position: static;
    min-width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .language-switcher {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .proof-strip,
  .care-flow,
  .values-grid,
  .product-grid,
  .founders,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .purpose-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero {
    padding-top: 42px;
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
    min-height: 760px;
  }

  .hero-image-panel {
    min-height: 100%;
  }

  .hero-care .care-hero-visual {
    display: none;
  }

  .hero > .hero-image-panel {
    max-width: none;
  }

  .hero > div,
  section > div,
  .visual-shell,
  .screen-frame {
    max-width: calc(100vw - 40px);
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
    padding: 0 22px;
    white-space: normal;
    text-align: center;
  }

  .dashboard-title {
    font-size: 13px;
  }

  .visual-shell {
    min-height: 520px;
  }

  .sense-card {
    right: 10px;
    bottom: -30px;
    width: calc(100% - 20px);
  }

  .mock-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
