/* ==========================================================================
   Design Core Hub — Homepage V7
   Dark premium studio homepage inspired by the approved full-page concept.
   Scope: body.home-v7 only. Loaded after studio-v6.css.
   ========================================================================== */

body.home-v7 {
  --h7-bg: #06111f;
  --h7-bg-2: #081827;
  --h7-surface: #0a1a2c;
  --h7-surface-2: #0d2035;
  --h7-surface-3: #10263f;
  --h7-line: rgba(148, 190, 236, .14);
  --h7-line-strong: rgba(125, 183, 247, .24);
  --h7-text: #f4f8ff;
  --h7-copy: #b8c7da;
  --h7-muted: #7f94ad;
  --h7-blue: #2d79ff;
  --h7-blue-2: #71c5ff;
  --h7-glow: rgba(45, 121, 255, .28);
  --h7-shell: min(1740px, calc(100vw - 48px));
  background: var(--h7-bg);
  color: var(--h7-text);
}

body.home-v7::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% -8%, rgba(43, 120, 255, .16), transparent 31%),
    radial-gradient(circle at 10% 25%, rgba(28, 91, 170, .09), transparent 27%),
    #06111f;
}

body.home-v7 .site,
body.home-v7 .main {
  background: transparent;
}

body.home-v7 .container,
body.home-v7 .header-inner {
  width: var(--h7-shell);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

body.home-v7 .announce { display: none; }

/* Header ----------------------------------------------------------------- */
body.home-v7 .header {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: 82px;
  color: var(--h7-text);
  background: rgba(5, 15, 28, .76);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(135%);
}

body.home-v7 .header.scrolled {
  background: rgba(5, 15, 28, .94);
  border-bottom-color: var(--h7-line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

body.home-v7 .header-inner {
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: clamp(28px, 4vw, 64px);
}

body.home-v7 .logo {
  color: #fff;
}

body.home-v7 .logo-symbol {
  width: 38px;
  height: 30px;
}

body.home-v7 .logo-text strong {
  color: #fff;
  font-size: 16px;
  letter-spacing: -.03em;
}

body.home-v7 .logo-text small {
  display: none;
}

body.home-v7 .nav {
  margin-left: auto;
  gap: clamp(18px, 1.8vw, 34px);
}

body.home-v7 .nav-link {
  color: #c4d1e0;
  font-size: 13px;
  font-weight: 600;
}

body.home-v7 .nav-link:hover,
body.home-v7 .nav-link.active {
  color: #fff;
}

body.home-v7 .nav-link::after {
  bottom: 5px;
  background: var(--h7-blue-2);
}

body.home-v7 .dropdown {
  background: rgba(8, 24, 40, .98);
  border-color: var(--h7-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

body.home-v7 .drop-link {
  color: #e8f1fc;
}

body.home-v7 .drop-link:hover {
  background: rgba(255, 255, 255, .06);
}

body.home-v7 .drop-icon {
  color: var(--h7-blue-2);
  background: rgba(45, 121, 255, .14);
}

body.home-v7 .drop-copy span {
  color: #8fa2b9;
}

body.home-v7 .header-actions {
  gap: 12px;
}

body.home-v7 .icon-btn {
  color: #dce7f3;
  border-color: var(--h7-line);
  background: rgba(255, 255, 255, .025);
}

body.home-v7 .icon-btn:hover {
  color: #fff;
  border-color: rgba(113, 197, 255, .38);
  background: rgba(255, 255, 255, .065);
}

body.home-v7 .header-signin {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  color: #d0dbea;
  font-size: 13px;
  font-weight: 600;
}

body.home-v7 .header-signin:hover { color: #fff; }

body.home-v7 .btn-primary {
  background: linear-gradient(135deg, #2f7dff, #1766f2);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(35, 111, 255, .28);
}

body.home-v7 .btn-primary:hover {
  background: linear-gradient(135deg, #438aff, #2672ff);
  box-shadow: 0 18px 40px rgba(35, 111, 255, .34);
}

body.home-v7 .btn-outline {
  color: #edf5ff;
  border-color: rgba(178, 207, 239, .22);
  background: rgba(255, 255, 255, .018);
}

body.home-v7 .btn-outline:hover {
  color: #fff;
  border-color: rgba(113, 197, 255, .42);
  background: rgba(255, 255, 255, .07);
}

body.home-v7 .mobile-nav {
  background: rgba(6, 17, 31, .98);
  border-color: var(--h7-line);
}

body.home-v7 .mobile-nav a {
  color: #d5e1ef;
  border-color: var(--h7-line);
}

/* Shared homepage utilities --------------------------------------------- */
.home-v7-shell {
  width: var(--h7-shell);
  margin-inline: auto;
}

.home-v7-section {
  position: relative;
  padding: clamp(88px, 8vw, 136px) 0;
  border-top: 1px solid var(--h7-line);
}

.home-v7-section:first-of-type {
  border-top: 0;
}

.home-v7-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #74bdf4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-v7-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #4fa7ec;
}

.home-v7-title {
  max-width: 900px;
  font-family: Manrope, sans-serif;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #f7fbff;
}

.home-v7-copy {
  max-width: 660px;
  color: var(--h7-copy);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.72;
}

.home-v7-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(38px, 4vw, 62px);
}

.home-v7-section-head > div:first-child {
  display: grid;
  gap: 14px;
}

.home-v7-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #77baff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.home-v7-link svg {
  width: 16px;
  height: 16px;
  transition: transform .28s cubic-bezier(.22,.72,.2,1);
}

.home-v7-link:hover svg { transform: translateX(4px); }

.home-v7-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--h7-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .024), rgba(255, 255, 255, .008)),
    rgba(9, 27, 45, .72);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.home-v7-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--card-x, 50%) var(--card-y, 0%), rgba(70, 145, 255, .12), transparent 56%);
  transition: opacity .35s ease;
}

.home-v7-card:hover::before { opacity: 1; }

.home-v7-card:hover {
  border-color: rgba(104, 174, 246, .28);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

/* Hero ------------------------------------------------------------------ */
.home-hero-v7 {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 5vw, 84px) 0 0;
  min-height: calc(100vh - 82px);
  border-bottom: 1px solid var(--h7-line);
}

.home-hero-v7::before {
  content: "";
  position: absolute;
  inset: -20% 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 25%, rgba(49, 132, 255, .17), transparent 28%),
    linear-gradient(90deg, rgba(93, 148, 212, .035) 1px, transparent 1px),
    linear-gradient(rgba(93, 148, 212, .03) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 94%);
}

.home-hero-grid-v7 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 5.6vw, 108px);
}

.home-hero-copy-v7 {
  display: grid;
  gap: 24px;
  padding: 20px 0 42px;
}

.home-hero-copy-v7 h1 {
  max-width: 760px;
  font-family: Manrope, sans-serif;
  font-size: clamp(58px, 5.9vw, 104px);
  line-height: .97;
  letter-spacing: -.062em;
  color: #f9fbff;
  text-wrap: balance;
}

.home-hero-copy-v7 h1 span {
  color: #8fd0ff;
}

.home-hero-copy-v7 .home-v7-copy {
  max-width: 640px;
  font-size: clamp(17px, 1.15vw, 20px);
}

.home-hero-actions-v7 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2px;
}

.home-hero-actions-v7 .btn {
  min-height: 54px;
  padding-inline: 22px;
}

.home-hero-proof-v7 {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 20px;
  padding-top: 10px;
}

.home-proof-item-v7 {
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: 10px;
}

.home-proof-icon-v7 {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #72bffc;
  border: 1px solid rgba(103, 180, 248, .24);
  border-radius: 50%;
  background: rgba(40, 112, 186, .08);
}

.home-proof-icon-v7 svg { width: 17px; height: 17px; }

.home-proof-item-v7 strong {
  display: block;
  color: #e9f2fb;
  font-size: 12px;
  line-height: 1.25;
}

.home-proof-item-v7 small {
  display: block;
  margin-top: 3px;
  color: #7289a2;
  font-size: 10px;
  line-height: 1.35;
}

.home-hero-visual-v7 {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.home-hero-frame-v7 {
  position: absolute;
  inset: 22px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(125, 189, 247, .22);
  border-radius: 28px;
  background: #081421;
  box-shadow: 0 42px 100px rgba(0, 0, 0, .38);
}

.home-hero-frame-v7::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 13, 24, .26), transparent 32%, transparent 78%, rgba(4, 13, 24, .15)),
    linear-gradient(180deg, transparent 58%, rgba(4, 13, 24, .48));
}

.home-hero-frame-v7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.02);
}

.home-hero-panel-v7 {
  position: absolute;
  z-index: 4;
  left: 42%;
  top: 22%;
  width: min(42%, 390px);
  padding: 19px 20px;
  border: 1px solid rgba(144, 201, 255, .21);
  border-radius: 16px;
  background: rgba(5, 18, 34, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.home-hero-panel-v7 small {
  display: block;
  color: #77baff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-hero-panel-v7 strong {
  display: block;
  margin-top: 8px;
  color: #f7fbff;
  font-family: Manrope, sans-serif;
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.home-hero-panel-v7 span {
  display: block;
  margin-top: 8px;
  color: #96aabd;
  font-size: 11px;
  line-height: 1.5;
}

.home-floating-v7 {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(129, 192, 255, .22);
  border-radius: 16px;
  background: rgba(8, 28, 49, .88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
}

.home-floating-v7.one { left: -42px; top: 30%; }
.home-floating-v7.two { right: -28px; top: 38%; }

.home-floating-icon-v7 {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #78c1ff;
  border-radius: 12px;
  background: rgba(45, 121, 255, .16);
}

.home-floating-icon-v7 svg { width: 20px; height: 20px; }

.home-floating-v7 strong {
  display: block;
  color: #f8fbff;
  font-size: 14px;
  line-height: 1.2;
}

.home-floating-v7 span {
  display: block;
  margin-top: 3px;
  color: #8398b0;
  font-size: 10px;
  line-height: 1.35;
}

.home-ecosystem-v7 {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr repeat(7, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 104px;
  margin-top: 44px;
  border-top: 1px solid var(--h7-line);
}

.home-ecosystem-v7 > span {
  color: #71869e;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-tool-v7 {
  color: #8598ad;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* Services -------------------------------------------------------------- */
.home-services-v7 {
  background:
    radial-gradient(circle at 86% 20%, rgba(35, 103, 180, .09), transparent 30%),
    transparent;
}

.home-services-layout-v7 {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(44px, 5.5vw, 110px);
  align-items: start;
}

.home-services-copy-v7 {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 128px;
}

.home-services-copy-v7 .btn {
  width: fit-content;
  margin-top: 8px;
}

.home-service-grid-v7 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card-v7 {
  grid-column: span 2;
  min-height: 228px;
  padding: 24px;
  border-radius: 16px;
  transition: transform .35s cubic-bezier(.22,.72,.2,1), border-color .3s ease, box-shadow .35s ease;
}

.home-service-card-v7:nth-child(4),
.home-service-card-v7:nth-child(5) {
  grid-column: span 3;
}

.home-service-top-v7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-service-icon-v7 {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #73c0ff;
  border-radius: 13px;
  background: rgba(48, 126, 219, .12);
  border: 1px solid rgba(95, 173, 249, .14);
}

.home-service-icon-v7 svg { width: 22px; height: 22px; }

.home-circle-arrow-v7 {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #9ecdf5;
  border: 1px solid rgba(142, 190, 233, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.home-circle-arrow-v7 svg { width: 16px; height: 16px; }

.home-v7-card:hover .home-circle-arrow-v7 {
  color: #fff;
  background: #1f70f7;
  transform: rotate(-12deg);
}

.home-service-card-v7 h3 {
  margin-top: 26px;
  color: #f4f8fd;
  font-size: 18px;
  line-height: 1.2;
}

.home-service-card-v7 p {
  margin-top: 9px;
  color: #8ea2b8;
  font-size: 13px;
  line-height: 1.6;
}

/* Featured themes ------------------------------------------------------- */
.home-themes-v7 {
  background: rgba(4, 13, 24, .18);
}

.home-theme-grid-v7 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-theme-card-v7 {
  border-radius: 18px;
  transition: transform .35s cubic-bezier(.22,.72,.2,1), border-color .3s ease, box-shadow .35s ease;
}

.home-theme-media-v7 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.48;
  border-bottom: 1px solid var(--h7-line);
  background: #0a1726;
}

.home-theme-media-v7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.home-theme-card-v7:hover img { transform: scale(1.045); }

.home-platform-pill-v7 {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: #d9ecff;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .05em;
  border: 1px solid rgba(164, 208, 251, .18);
  border-radius: 999px;
  background: rgba(7, 19, 33, .78);
  backdrop-filter: blur(12px);
}

.home-theme-body-v7 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.home-theme-body-v7 h3 {
  color: #f4f8ff;
  font-size: 17px;
  line-height: 1.2;
}

.home-theme-body-v7 p {
  margin-top: 5px;
  color: #8297ad;
  font-size: 11px;
  line-height: 1.45;
}

/* Process ---------------------------------------------------------------- */
.home-process-v7 {
  background:
    radial-gradient(circle at 12% 76%, rgba(43, 103, 172, .075), transparent 30%),
    transparent;
}

.home-process-layout-v7 {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(720px, 1.28fr);
  gap: clamp(48px, 6vw, 118px);
  align-items: center;
}

.home-process-copy-v7 {
  display: grid;
  gap: 16px;
}

.home-process-copy-v7 .btn {
  width: fit-content;
  margin-top: 6px;
}

.home-process-steps-v7 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.home-process-steps-v7::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 55px;
  height: 1px;
  background: linear-gradient(90deg, rgba(73, 155, 239, .1), rgba(73, 155, 239, .32), rgba(73, 155, 239, .1));
}

.home-process-step-v7 {
  position: relative;
  z-index: 2;
}

.home-process-step-v7 .no {
  display: block;
  margin-bottom: 20px;
  color: #71859c;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.home-process-dot-v7 {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: #78c1ff;
  border: 1px solid rgba(113, 190, 255, .24);
  border-radius: 50%;
  background: #0a1c30;
  box-shadow: 0 0 0 7px #06111f;
}

.home-process-dot-v7 svg { width: 19px; height: 19px; }

.home-process-step-v7 h3 {
  color: #f0f6fd;
  font-size: 14px;
  line-height: 1.35;
}

.home-process-step-v7 p {
  margin-top: 8px;
  color: #8296ac;
  font-size: 11px;
  line-height: 1.58;
}

/* Work ------------------------------------------------------------------- */
.home-work-grid-v7 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-work-card-v7 {
  border-radius: 18px;
  transition: transform .35s cubic-bezier(.22,.72,.2,1), border-color .3s ease, box-shadow .35s ease;
}

.home-work-media-v7 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.38;
}

.home-work-media-v7::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 12, 22, .68));
}

.home-work-media-v7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}

.home-work-card-v7:hover img { transform: scale(1.05); }

.home-work-body-v7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
}

.home-work-body-v7 strong {
  display: block;
  color: #f2f7fd;
  font-size: 15px;
}

.home-work-body-v7 span {
  display: block;
  margin-top: 4px;
  color: #7f93aa;
  font-size: 10px;
}

/* Why choose us ---------------------------------------------------------- */
.home-why-v7 {
  background: rgba(8, 24, 39, .35);
}

.home-why-layout-v7 {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(640px, 1.28fr);
  gap: clamp(50px, 6vw, 120px);
  align-items: center;
}

.home-why-copy-v7 {
  display: grid;
  gap: 16px;
}

.home-benefits-v7 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--h7-line);
  border-top: 1px solid var(--h7-line);
}

.home-benefit-v7 {
  display: grid;
  grid-template-columns: 42px auto;
  gap: 16px;
  min-height: 150px;
  padding: 26px 28px;
  border-right: 1px solid var(--h7-line);
  border-bottom: 1px solid var(--h7-line);
}

.home-benefit-v7 svg {
  width: 24px;
  height: 24px;
  color: #5fb7ff;
}

.home-benefit-v7 strong {
  display: block;
  color: #edf5fd;
  font-size: 14px;
}

.home-benefit-v7 p {
  margin-top: 6px;
  color: #8196ad;
  font-size: 11px;
  line-height: 1.55;
}

/* CTA -------------------------------------------------------------------- */
.home-cta-v7 {
  padding-top: clamp(56px, 5vw, 82px);
  padding-bottom: clamp(70px, 6vw, 100px);
}

.home-cta-panel-v7 {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 50px;
  min-height: 260px;
  padding: clamp(38px, 4vw, 64px);
  border: 1px solid rgba(61, 146, 255, .48);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 50%, rgba(36, 115, 243, .22), transparent 28%),
    linear-gradient(120deg, rgba(12, 34, 58, .94), rgba(6, 22, 40, .98));
  box-shadow: inset 0 0 70px rgba(42, 116, 214, .08), 0 24px 80px rgba(0, 0, 0, .18);
}

.home-cta-panel-v7::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(95, 165, 248, .15) 44% 45%, transparent 45%),
    linear-gradient(45deg, transparent 0 60%, rgba(95, 165, 248, .1) 60% 61%, transparent 61%);
}

.home-cta-copy-v7,
.home-cta-side-v7 {
  position: relative;
  z-index: 2;
}

.home-cta-copy-v7 {
  display: grid;
  gap: 14px;
}

.home-cta-copy-v7 h2 {
  max-width: 620px;
  color: #f8fbff;
  font-family: Manrope, sans-serif;
  font-size: clamp(36px, 3.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.home-cta-side-v7 {
  display: grid;
  gap: 20px;
}

.home-cta-side-v7 p {
  max-width: 560px;
  color: #a6b8cb;
  font-size: 14px;
  line-height: 1.7;
}

.home-cta-actions-v7 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer ----------------------------------------------------------------- */
body.home-v7 .footer {
  padding: 0;
  color: #c5d3e2;
  background: #04101c;
  border-top: 1px solid var(--h7-line);
}

body.home-v7 .footer-main {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, minmax(140px, .8fr));
  gap: clamp(34px, 5vw, 84px);
  padding: 68px 0 50px;
  border-bottom: 1px solid var(--h7-line);
}

body.home-v7 .footer-col:first-child {
  max-width: 360px;
}

body.home-v7 .footer-col p {
  color: #7f93aa;
  font-size: 12px;
  line-height: 1.7;
}

body.home-v7 .footer-col h4 {
  color: #eaf3fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

body.home-v7 .footer-col a {
  min-height: 0;
  color: #8296ac;
  font-size: 11px;
}

body.home-v7 .footer-col a:hover { color: #d8eaff; }

body.home-v7 .socials a {
  color: #9eb1c5;
  border-color: var(--h7-line);
  background: rgba(255, 255, 255, .018);
}

body.home-v7 .footer-bottom {
  color: #677d95;
  font-size: 10px;
  padding: 22px 0 30px;
}

/* Homepage animation state ---------------------------------------------- */
.home-v7 [data-home-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity .72s cubic-bezier(.16,1,.3,1) var(--home-delay, 0ms),
    transform .84s cubic-bezier(.16,1,.3,1) var(--home-delay, 0ms);
}

.home-v7 [data-home-reveal].home-is-visible {
  opacity: 1;
  transform: none;
}

.home-v7 .home-hero-visual-v7[data-home-reveal] {
  transform: translate3d(0, 26px, 0) scale(.985);
}

.home-v7 .home-hero-visual-v7[data-home-reveal].home-is-visible {
  transform: none;
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1320px) {
  body.home-v7 {
    --h7-shell: min(100% - 40px, 1740px);
  }

  body.home-v7 .nav { display: none; }
  body.home-v7 .menu-btn { display: grid; }
  body.home-v7 .header-signin { display: none; }

  .home-hero-grid-v7 {
    grid-template-columns: minmax(380px, .85fr) minmax(520px, 1.15fr);
    gap: 48px;
  }

  .home-hero-copy-v7 h1 {
    font-size: clamp(52px, 6.2vw, 84px);
  }

  .home-hero-visual-v7 { min-height: 520px; }
  .home-ecosystem-v7 { grid-template-columns: 1.3fr repeat(5, 1fr); }
  .home-ecosystem-v7 .home-tool-v7:nth-last-child(-n+2) { display: none; }

  .home-theme-grid-v7,
  .home-work-grid-v7 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .home-process-layout-v7 {
    grid-template-columns: minmax(280px, .65fr) minmax(620px, 1.35fr);
    gap: 52px;
  }
}

@media (max-width: 1080px) {
  body.home-v7 {
    --h7-shell: min(100% - 36px, 1740px);
  }

  .home-hero-v7 {
    min-height: auto;
    padding-top: 52px;
  }

  .home-hero-grid-v7,
  .home-services-layout-v7,
  .home-process-layout-v7,
  .home-why-layout-v7,
  .home-cta-panel-v7 {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-copy-v7 {
    max-width: 820px;
    padding-bottom: 10px;
  }

  .home-hero-copy-v7 h1 {
    max-width: 880px;
    font-size: clamp(54px, 8vw, 88px);
  }

  .home-hero-visual-v7 { min-height: 620px; }
  .home-services-copy-v7 { position: static; }

  .home-service-card-v7,
  .home-service-card-v7:nth-child(4),
  .home-service-card-v7:nth-child(5) { grid-column: span 3; }

  .home-process-copy-v7 { max-width: 680px; }

  .home-process-steps-v7 {
    margin-top: 12px;
  }

  .home-cta-panel-v7 {
    gap: 28px;
  }

  body.home-v7 .footer-main {
    grid-template-columns: 1.4fr repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-v7 {
    --h7-shell: calc(100% - 28px);
  }

  body.home-v7 .header,
  body.home-v7 .header-inner {
    min-height: 70px;
  }

  body.home-v7 .header-actions > .icon-btn:not(.menu-btn),
  body.home-v7 .header-actions > .btn {
    display: none;
  }

  body.home-v7 .logo-text strong { font-size: 14px; }

  .home-v7-section {
    padding: 68px 0;
  }

  .home-v7-section-head {
    display: grid;
    align-items: start;
    gap: 18px;
    margin-bottom: 32px;
  }

  .home-v7-title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .home-hero-v7 {
    padding-top: 34px;
  }

  .home-hero-copy-v7 {
    gap: 20px;
  }

  .home-hero-copy-v7 h1 {
    font-size: clamp(46px, 13.3vw, 68px);
    line-height: .99;
  }

  .home-hero-copy-v7 .home-v7-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .home-hero-actions-v7 .btn {
    flex: 1 1 190px;
    justify-content: center;
  }

  .home-hero-proof-v7 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-proof-item-v7 {
    grid-template-columns: 34px auto;
  }

  .home-proof-icon-v7 {
    width: 34px;
    height: 34px;
  }

  .home-hero-visual-v7 {
    min-height: 390px;
    margin-top: 14px;
  }

  .home-hero-frame-v7 {
    inset: 8px 0 18px;
    border-radius: 18px;
  }

  .home-hero-panel-v7 {
    left: 10%;
    top: 16%;
    width: 62%;
    padding: 14px;
  }

  .home-floating-v7 {
    display: none;
  }

  .home-ecosystem-v7 {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 12px;
    padding: 24px 0;
    margin-top: 18px;
  }

  .home-ecosystem-v7 > span {
    grid-column: 1 / -1;
    text-align: center;
  }

  .home-ecosystem-v7 .home-tool-v7:nth-last-child(-n+2) {
    display: block;
  }

  .home-service-grid-v7 {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-service-card-v7,
  .home-service-card-v7:nth-child(4),
  .home-service-card-v7:nth-child(5) {
    grid-column: 1;
    min-height: 0;
  }

  .home-theme-grid-v7,
  .home-work-grid-v7,
  .home-benefits-v7 {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-process-steps-v7 {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding-left: 2px;
  }

  .home-process-steps-v7::before {
    left: 22px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 1px;
    height: auto;
  }

  .home-process-step-v7 {
    display: grid;
    grid-template-columns: 46px auto;
    column-gap: 18px;
  }

  .home-process-step-v7 .no {
    grid-column: 2;
    margin: 0 0 2px;
  }

  .home-process-dot-v7 {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }

  .home-process-step-v7 h3,
  .home-process-step-v7 p {
    grid-column: 2;
  }

  .home-benefits-v7 {
    border-left: 0;
  }

  .home-benefit-v7 {
    min-height: 0;
    border-left: 1px solid var(--h7-line);
  }

  .home-cta-panel-v7 {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 16px;
  }

  .home-cta-copy-v7 h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .home-cta-actions-v7 .btn {
    flex: 1 1 180px;
    justify-content: center;
  }

  body.home-v7 .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding-top: 52px;
  }

  body.home-v7 .footer-col:first-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  .home-ecosystem-v7 {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-theme-grid-v7,
  .home-work-grid-v7 {
    gap: 14px;
  }

  .home-theme-body-v7,
  .home-work-body-v7 {
    padding: 15px;
  }

  body.home-v7 .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v7 [data-home-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-v7-card,
  .home-theme-media-v7 img,
  .home-work-media-v7 img,
  .home-circle-arrow-v7 {
    transition: none !important;
  }
}
