:root {
  --bg: #ffffff;
  --text: #121212;
  --text-soft: #4d4d58;
  --line: #e9edf5;
  --surface: #f7f9fd;
  --surface-2: #eef3fa;
  --dark: #0f1020;
  --dark-2: #17182e;
  --purple: #6f37ff;
  --purple-2: #8b5cff;
  --purple-soft: rgba(111, 55, 255, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1440px;
  --shadow-soft: 0 24px 50px rgba(17, 22, 39, 0.08);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 16, 32, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row {
  min-height: 84px;
}

.logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
}

.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 0 0 6px rgba(111, 55, 255, 0.12);
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  transition: color var(--transition);
}

.main-nav a:hover,
.header-cta:hover,
.footer-links a:hover {
  color: #fff;
}

.header-cta {
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition);
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(62, 78, 255, 0.26), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(165, 105, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #0a0b16 0%, #17142b 40%, #29145a 100%);
  color: #fff;
  padding: 54px 0 70px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow--one {
  width: 340px;
  height: 340px;
  background: rgba(72, 98, 255, 0.35);
  left: 8%;
  top: 18%;
}

.hero-glow--two {
  width: 420px;
  height: 420px;
  background: rgba(160, 84, 255, 0.26);
  right: 8%;
  top: 8%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: end;
  min-height: 640px;
}

.eyebrow,
.section-label,
.platform-label {
  margin: 0 0 18px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.section-label,
.platform-label {
  color: var(--purple);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 0;
}

.hero-text,
.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(111, 55, 255, 0.32);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary,
.btn-line {
  background: transparent;
  color: var(--text);
  border-color: #d8deea;
}

.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  min-height: 48px;
  padding-inline: 18px;
  margin-top: 22px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.hero-blob--one {
  width: 180px;
  height: 220px;
  top: 8%;
  right: 22%;
}

.hero-blob--two {
  width: 200px;
  height: 180px;
  top: 20%;
  right: 0;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  padding: 18px;
  border-radius: 34px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.phone-frame {
  width: 100%;
  aspect-ratio: 1.3 / 0.88;
  background: #0e1021;
  border-radius: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.phone-notch {
  width: 82px;
  height: 16px;
  background: #0b0c16;
  border-radius: 999px;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 75%, rgba(76, 94, 255, 0.34), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(152, 99, 255, 0.28), transparent 24%),
    linear-gradient(180deg, #171834 0%, #252452 100%);
  padding: 26px 18px 18px;
}

.screen-panel {
  height: 86px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  margin-bottom: 18px;
}

.screen-line {
  height: 14px;
  width: 78%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 12px;
}

.screen-line--mid {
  width: 58%;
}

.screen-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.screen-mini {
  height: 92px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
}

.section {
  padding: 96px 0;
}

.intro {
  background: #fff;
}

.intro-grid,
.contact-grid,
.statement-grid {
  display: grid;
  gap: 24px;
}

.intro-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.intro-text {
  font-size: 1.22rem;
  line-height: 1.35;
  color: var(--text);
  max-width: 28ch;
}

.card-soft {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.section-heading,
.section-head {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-bottom: 34px;
}

.section-heading p,
.section-head p,
.manifesto-text p,
.platform-copy p,
.case-body p,
.process-card p,
.contact-copy p {
  max-width: 60ch;
}

.section-icons {
  display: flex;
  align-items: center;
  gap: 26px;
}

.section-icons span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--purple);
}

.section-icons span:nth-child(2) {
  width: 8px;
  height: 8px;
  background: #101522;
  box-shadow: 0 0 0 6px rgba(111, 55, 255, 0.12);
}

.products {
  background: #fff;
}

.section-title {
  margin-bottom: 30px;
}

.products-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.product-card {
  min-height: 200px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
}

.product-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  margin-bottom: 18px;
}

.product-visual {
  min-height: 260px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1c1a40 0%, #2d25a4 60%, #5f4cff 100%);
}

.product-visual__glow {
  position: absolute;
  inset: auto auto 8% 10%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(20px);
}

.person-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54%;
  height: 82%;
  border-radius: 26px 26px 0 0;
  background:
    radial-gradient(circle at 50% 18%, #f0c8ad 0 12%, transparent 13%),
    radial-gradient(circle at 50% 44%, #c6d1de 0 20%, transparent 21%),
    linear-gradient(180deg, transparent 0 22%, #4f3dff 22% 100%);
}

.platform {
  background:
    radial-gradient(circle at 20% 50%, rgba(109, 61, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #0b0c17 0%, #14152d 100%);
  color: #fff;
}

.platform-wrap {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.platform-copy {
  max-width: 760px;
}

.platform-copy h2,
.platform-copy p {
  color: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card,
.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.case-thumb {
  min-height: 220px;
}

.case-thumb--one {
  background:
    radial-gradient(circle at 20% 75%, rgba(82, 100, 255, 0.34), transparent 26%),
    linear-gradient(135deg, #17182f 0%, #3737aa 100%);
}

.case-thumb--two {
  background:
    radial-gradient(circle at 80% 18%, rgba(159, 110, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #eef2f8 0%, #dce6f6 100%);
}

.case-thumb--three {
  background:
    radial-gradient(circle at 50% 30%, rgba(111, 55, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #17182f 0%, #261b6f 100%);
}

.case-body {
  padding: 22px;
}

.statement {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-grid {
  grid-template-columns: 90px 1fr;
  align-items: start;
}

.statement-mark {
  font-size: 4.6rem;
  line-height: 0.8;
  color: var(--purple);
  font-weight: 800;
}

.statement-text p {
  max-width: 24ch;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 24px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--purple);
  font-weight: 800;
}

.contact {
  background: #fff;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8deea;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
}

.site-footer {
  background: #0f1020;
  color: #fff;
  padding: 26px 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .hero-grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .cases-grid,
  .process-grid {grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
    gap: 12px 16px;
  }

  .hero {
    padding: 36px 0 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 320px;
  }

  .products-grid,
  .cases-grid,
  .process-grid,
  .hero-side-grid {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .statement-text p,
  .contact-copy h2,
  h1 {
    max-width: none;
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .card-soft,
  .product-card,
  .case-body,
  .process-card,
  .contact-form {
    padding: 20px;
  }

  .phone-card {
    padding: 12px;
    border-radius: 24px;
  }

  .phone-frame {
    border-radius: 24px;
  }

  .phone-screen {
    border-radius: 18px;
  }
}