/* =========================================================
   HAPPIE® GROUP — happie.co.in
   ========================================================= */

@font-face { font-family: "Poppins"; font-weight: 300; font-style: normal; font-display: swap; src: url("../fonts/Poppins-Light.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/Poppins-Regular.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/Poppins-Medium.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/Poppins-Bold.woff2") format("woff2"); }
@font-face { font-family: "Happie Script"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/MrsSaintDelafield.woff2") format("woff2"); }

:root {
  /* Brand */
  --red: #E30613;
  --red-deep: #B4000C;
  --red-dark: #8E000A;
  --white: #FFFFFF;
  --black: #000000;
  --ink: #1C1C1C;
  --ink-soft: #4A4A4A;
  --grey-500: #737373;
  --grey-300: #CFCDCA;
  --grey-150: #E9E7E4;
  --grey-50: #F6F5F3;
  --sun: #F3A25E;

  /* Type */
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --script: "Happie Script", "Brush Script MT", cursive;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --nav-h: 88px;
  --section: clamp(88px, 11vw, 160px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) - 8px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p, ul, dl, dd, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; background: var(--red); color: #fff; padding: 10px 18px; border-radius: 999px; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Type scale ---------- */
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.eyebrow--light { color: #FF6B73; }
.display { font-size: clamp(34px, 4.1vw, 60px); line-height: 1.06; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.display--light { color: var(--white); }
.display-sm { font-size: clamp(28px, 2.8vw, 42px); line-height: 1.12; font-weight: 600; letter-spacing: -.015em; }
.lead-muted { font-size: 17px; line-height: 1.75; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; cursor: pointer; text-decoration: none; font-weight: 500; font-size: 16px; line-height: 1; white-space: nowrap; transition: background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.btn--pill { border-radius: 999px; padding: 17px 30px; }
.btn--red { background: var(--red); color: var(--white); box-shadow: 0 10px 24px -12px rgba(227, 6, 19, .7); }
.btn--red:hover { background: var(--red-deep); box-shadow: 0 14px 30px -12px rgba(227, 6, 19, .85); transform: translateY(-1px); }
.btn--outline { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--white); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h); transition: background-color .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease), backdrop-filter .4s; }
.nav.is-scrolled { --nav-h: 74px; background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: saturate(160%) blur(18px); backdrop-filter: saturate(160%) blur(18px); box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 10px 30px -20px rgba(0, 0, 0, .25); }
.nav__inner { height: 100%; max-width: 1760px; margin: 0 auto; padding: 0 clamp(20px, 3.6vw, 64px); display: flex; align-items: center; gap: 24px; }
.nav__brand { flex: none; display: block; }
.nav__brand img { width: clamp(128px, 9.5vw, 160px); transition: width .4s var(--ease); }
.nav.is-scrolled .nav__brand img { width: clamp(118px, 8vw, 138px); }
.nav__menu { position: relative; margin: 0 auto; }
.nav__menu ul { display: flex; gap: clamp(20px, 3.3vw, 56px); }
.nav__menu a { display: block; padding: 10px 0; font-size: 15.5px; font-weight: 400; text-decoration: none; color: var(--ink); transition: color .25s; }
.nav__menu a:hover, .nav__menu a.is-active { color: var(--red); }
.nav__menu a.is-active { font-weight: 500; }
.nav__indicator { position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red); border-radius: 2px; transition: transform .5s var(--ease), width .5s var(--ease), opacity .3s; opacity: 0; }
.nav__divider { width: 1.5px; height: 30px; background: var(--red); flex: none; }
.nav__cta { flex: none; padding: 15px 28px; font-size: 16px; }
.nav__toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--white); box-shadow: 0 4px 16px rgba(0, 0, 0, .12); cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 14px; right: 14px; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }
.nav__toggle span:first-child { top: 18px; }
.nav__toggle span:last-child { top: 26px; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* =========================================================
   LAYER 1 · HERO
   ========================================================= */
.hero { position: relative; min-height: max(100vh, 700px); min-height: max(100svh, 700px); overflow: hidden; isolation: isolate; color: var(--ink); background: #F3D6BF; }
.hero__media { position: absolute; inset: -3% 0 0 0; z-index: -3; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 58%; }
.hero__glow { position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(52% 50% at 50% 34%, rgba(255, 252, 247, .92) 0%, rgba(255, 250, 244, .72) 38%, rgba(255, 246, 236, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(0deg, rgba(10, 6, 4, .55) 0%, rgba(10, 6, 4, 0) 26%);
}

.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: calc(var(--nav-h) + clamp(12px, 3vh, 34px)) var(--gutter) 0; }
.hero__group { font-size: clamp(13px, 1vw, 16px); font-weight: 500; letter-spacing: .62em; text-indent: .62em; text-transform: uppercase; color: var(--ink); }
.hero__logo { margin: clamp(16px, 2.6vh, 30px) 0 clamp(4px, 1vh, 12px); line-height: 0; }
.hero__logo img { width: clamp(240px, min(26vw, 46vh), 440px); filter: drop-shadow(0 12px 30px rgba(255, 255, 255, .8)); }
.hero__tagline { font-size: clamp(22px, 2vw, 33px); font-weight: 600; letter-spacing: -.01em; line-height: 1.25; color: var(--ink); }
.hero__tagline span { color: var(--red); }
.hero__sub { margin-top: clamp(14px, 2.4vh, 22px); font-size: clamp(11.5px, .95vw, 15px); font-weight: 500; letter-spacing: .38em; text-indent: .38em; text-transform: uppercase; color: var(--ink); }
.hero__launch { margin-top: clamp(22px, 4.2vh, 44px); font-size: clamp(30px, 3.2vw, 54px); font-weight: 600; letter-spacing: .32em; text-indent: .32em; line-height: 1; color: var(--white); text-shadow: 0 2px 4px rgba(120, 50, 10, .28), 0 6px 34px rgba(160, 70, 20, .45); }

.notify { width: min(100%, 520px); }
.notify--hero { margin-top: clamp(26px, 4.4vh, 44px); }
.notify__field { display: flex; align-items: center; gap: 12px; padding: 6px 6px 6px 26px; background: var(--white); border-radius: 999px; box-shadow: 0 20px 50px -18px rgba(60, 20, 0, .45), 0 0 0 1px rgba(255, 255, 255, .6); transition: box-shadow .3s var(--ease); }
.notify__field:focus-within { box-shadow: 0 20px 50px -18px rgba(60, 20, 0, .45), 0 0 0 3px rgba(227, 6, 19, .25); }
.notify__field .ico { color: var(--ink-soft); width: 22px; height: 22px; }
.notify__field input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 16px; padding: 14px 0; color: var(--ink); }
.notify__field input::placeholder { color: var(--grey-500); }
.notify__field .btn { padding: 17px 28px; font-size: 16.5px; }
.notify.is-invalid .notify__field { box-shadow: 0 20px 50px -18px rgba(60, 20, 0, .45), 0 0 0 2px var(--red); }
.form-msg { min-height: 1.6em; margin-top: 12px; font-size: 14px; font-weight: 500; line-height: 1.5; }
.notify--hero .form-msg { color: var(--ink); text-shadow: 0 1px 12px rgba(255, 255, 255, .95); }
.form-msg.is-error { color: var(--red); }
.form-msg.is-success { color: #0F6B39; }
.notify--hero .form-msg.is-success, .notify--hero .form-msg.is-error { display: inline-block; padding: 8px 16px; border-radius: 12px; background: rgba(255, 255, 255, .88); text-shadow: none; }

.hero__pillars { position: absolute; z-index: 2; left: clamp(28px, 3.8vw, 66px); top: 21%; padding-left: 20px; border-left: 3px solid var(--red); display: grid; gap: 6px; }
.hero__pillars li { font-size: clamp(12px, .95vw, 15px); font-weight: 500; letter-spacing: .26em; text-transform: uppercase; line-height: 1.5; color: var(--ink); }

.hero__script { position: absolute; z-index: 2; right: clamp(56px, 5.2vw, 100px); top: calc(var(--nav-h) + 4px); display: flex; flex-direction: column; font-family: var(--script); font-size: clamp(38px, 3.3vw, 58px); line-height: .98; color: var(--ink); rotate: -16deg; transform-origin: right top; padding-bottom: 14px; }
.hero__script span:nth-child(2) { padding-left: .7em; }
.hero__script span:nth-child(3) { padding-left: 1.3em; }
.hero__script::after { content: ""; position: absolute; right: .3em; bottom: 0; width: 42%; height: 2px; background: var(--red); border-radius: 2px; transform: rotate(-4deg); }

.hero__corner { position: absolute; z-index: 3; bottom: clamp(84px, 11vh, 110px); display: flex; align-items: center; gap: 12px; font-size: clamp(12px, .95vw, 15px); font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--white); text-shadow: 0 1px 10px rgba(0, 0, 0, .4); }
.hero__corner i { font-style: normal; opacity: .85; padding: 0 .2em; }
.hero__corner--left { left: clamp(28px, 3.2vw, 56px); }
.hero__corner--right { right: clamp(28px, 3.2vw, 56px); }
.hero__corner .ico { width: 18px; height: 18px; }
.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: clamp(72px, 9vh, 96px); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 12.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--white); text-decoration: none; text-shadow: 0 1px 10px rgba(0, 0, 0, .45); }
.hero__scroll::after { content: ""; width: 30px; height: 2px; background: var(--red); border-radius: 2px; }
.hero__mouse { width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .95); border-radius: 14px; position: relative; box-shadow: 0 0 18px rgba(0, 0, 0, .25); }
.hero__mouse span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; background: var(--white); border-radius: 2px; animation: wheel 2s var(--ease) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

.hero__curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(40px, 5vw, 80px); z-index: 1; pointer-events: none; }
.hero__curve-fill { fill: var(--white); }
.hero__curve-line { fill: none; stroke: var(--red); stroke-width: 3; vector-effect: non-scaling-stroke; }

/* Page-load sequence (hero only) */
.js .hero [data-load] { opacity: 0; transform: translateY(14px); }
.hero.is-loaded [data-load] { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--d, 0) * 110ms); }

/* =========================================================
   LAYER 2 · BUSINESS ECOSYSTEM
   ========================================================= */
.businesses { position: relative; background: var(--white); padding: clamp(44px, 5vw, 80px) 0 0; }
.businesses__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px 80px; align-items: end; margin-bottom: clamp(36px, 4vw, 60px); }

.eco { position: relative; width: 100%; max-width: 1920px; margin: 0 auto; aspect-ratio: 1672 / 711; container-type: inline-size; background: var(--white) url("../img/ecosystem.jpg") center / 100% 100% no-repeat; }
.tile { position: absolute; inset: 0; clip-path: var(--clip); outline: none; }
.tile__img { position: absolute; inset: 0; background: url("../img/ecosystem.jpg") center / 100% 100% no-repeat; transform-origin: var(--ox) var(--oy); transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.tile:hover .tile__img, .tile:focus-visible .tile__img { transform: scale(1.045); }
.eco:has(.tile:hover) .tile:not(:hover) .tile__img,
.eco:has(.tile:focus-visible) .tile:not(:focus-visible) .tile__img { filter: brightness(.72) saturate(.85); }

.tile__label { position: absolute; left: var(--lx); top: var(--ly); color: var(--white); text-shadow: 0 1px 2px rgba(0, 0, 0, .45), 0 2px 18px rgba(0, 0, 0, .55); pointer-events: none; }
.tile__label h3 { font-size: clamp(13px, 1.36cqw, 26px); font-weight: 600; letter-spacing: .005em; line-height: 1.15; text-transform: uppercase; }
.tile__label p { white-space: nowrap; margin-top: .5cqw; font-size: clamp(11px, .98cqw, 18px); font-weight: 400; line-height: 1.38; }
.tile__status { display: inline-block; margin-top: .8cqw; padding: .28cqw .8cqw; border-radius: 999px; background: var(--red); font-size: clamp(9px, .66cqw, 12px); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; text-shadow: none; opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.tile:hover .tile__status, .tile:focus-visible .tile__status { opacity: 1; transform: none; }
.tile--fintech::after, .tile--infra::after, .tile--sports::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.tile__points { position: absolute; left: 90.2%; top: 57.7%; display: grid; gap: 1.1cqw; color: var(--white); pointer-events: none; }
.tile__points li { display: flex; align-items: center; gap: .9cqw; font-size: clamp(11px, .98cqw, 18px); text-shadow: 0 1px 12px rgba(0, 0, 0, .6); }
.tile__points svg { width: 1.9cqw; height: 1.9cqw; min-width: 18px; min-height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* legibility scrims behind labels */
.tile--realty .tile__label, .tile--infra .tile__label, .tile--network .tile__label { text-shadow: 0 1px 2px rgba(0, 0, 0, .55), 0 2px 22px rgba(0, 0, 0, .7); }

.eco__core { position: absolute; left: 50%; top: 58.4%; width: 26.6cqw; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; z-index: 5; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 42%, #FFFFFF 0 55%, #F4F3F1 100%);
  box-shadow: 0 0 0 .35cqw rgba(255, 255, 255, .55), 0 30px 70px -20px rgba(0, 0, 0, .45), inset 0 0 40px rgba(0, 0, 0, .06);
}
.eco__core::before { content: ""; position: absolute; inset: 6%; border-radius: 50%; opacity: .5; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, .16) .9px, transparent 1.2px); background-size: .55cqw .55cqw;
  -webkit-mask: radial-gradient(closest-side, #000 40%, transparent 100%); mask: radial-gradient(closest-side, #000 40%, transparent 100%); }
.eco__core::after { content: ""; position: absolute; inset: -1.3cqw; border-radius: 50%; border: 1px solid rgba(227, 6, 19, .35); pointer-events: none; animation: ring 6s var(--ease) infinite; }
@keyframes ring { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.025); opacity: .35; } }
.eco__core-inner { position: relative; width: 80%; display: flex; flex-direction: column; align-items: center; }
.eco__core img { width: 74%; }
.eco__core-group { text-transform: uppercase; margin-top: 1.1cqw; font-size: max(10px, 1.02cqw); font-weight: 500; letter-spacing: .5em; text-indent: .5em; color: var(--ink); }
.eco__core-rule { width: 3.2cqw; height: 2px; background: var(--red); margin: 1cqw 0; }
.eco__core-title { font-size: max(13px, 1.32cqw); font-weight: 500; line-height: 1.25; color: var(--ink); }
.eco__core-sub { margin-top: .9cqw; font-size: max(8.5px, .76cqw); font-weight: 400; letter-spacing: .26em; text-indent: .26em; line-height: 1.7; color: var(--ink-soft); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: var(--section) 0; background: var(--white); }
.about__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(24px, 3vw, 48px); row-gap: clamp(40px, 4vw, 60px); }
.about__head { grid-column: 1 / span 7; }
.about__head .display { max-width: 15ch; }
.about__intro { margin-top: 32px; font-size: clamp(18px, 1.4vw, 21px); line-height: 1.65; color: var(--ink); max-width: 58ch; font-weight: 400; }
.about__body { grid-column: 1 / span 6; display: grid; gap: 1.1em; font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); max-width: 62ch; }
.about__pillars { grid-column: 8 / span 5; grid-row: 1 / span 2; align-self: start; margin-top: 12px; padding: 36px 0 0 36px; border-left: 3px solid var(--red); }
.about__pillars-lead { font-size: 15px; color: var(--grey-500); margin-bottom: 20px; }
.about__pillars dl { display: grid; }
.about__pillars dl > div { padding: 22px 0; border-top: 1px solid var(--grey-150); }
.about__pillars dl > div:first-child { border-top: 0; padding-top: 0; }
.about__pillars dt { font-size: clamp(32px, 3.1vw, 48px); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; text-transform: uppercase; color: var(--ink); }
.about__pillars dl > div:nth-child(4) dt { color: var(--red); }
.about__pillars dd { margin-top: 8px; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); max-width: 38ch; }
.about__ambition { grid-column: 1 / -1; padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--grey-150); }
.about__ambition { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: inherit; }
.about__ambition p { grid-column: 5 / -1; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.38; font-weight: 300; letter-spacing: -.012em; color: var(--ink); max-width: 32ch; }
.about__ambition p::before { content: ""; display: block; width: 56px; height: 3px; background: var(--red); margin-bottom: 26px; }

/* =========================================================
   MISSION
   ========================================================= */
.mission { padding: var(--section) 0; background: var(--grey-50); position: relative; }
.mission__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px clamp(40px, 6vw, 110px); }
.mission__statement { font-size: clamp(24px, 2.35vw, 36px); font-weight: 500; line-height: 1.38; letter-spacing: -.012em; color: var(--ink); padding-left: 28px; border-left: 3px solid var(--red); }
.mission__text { margin-top: 36px; padding-left: 31px; display: grid; gap: 1em; font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); max-width: 62ch; }

.principles { margin-top: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--grey-300); }
.principles li { padding: 44px clamp(20px, 2.4vw, 40px) 8px; border-left: 1px solid var(--grey-300); }
.principles li:first-child { border-left: 0; padding-left: 0; }
.principles svg { width: 48px; height: 48px; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s, transform .5s var(--ease); }
.principles li:hover svg { stroke: var(--red); transform: translateY(-3px); }
.principles h3 { margin-top: 26px; font-size: 16px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.principles p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* =========================================================
   VISION
   ========================================================= */
.vision { position: relative; isolation: isolate; overflow: hidden; color: var(--white); padding: calc(var(--section) * 1.05) 0; background: #1A0F0B; }
.vision__media { position: absolute; inset: -8% 0; z-index: -2; }
.vision__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.vision::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10, 5, 3, .92) 0%, rgba(10, 5, 3, .74) 42%, rgba(10, 5, 3, .12) 100%), linear-gradient(0deg, rgba(10, 5, 3, .9) 0%, rgba(10, 5, 3, 0) 42%); }
.vision__copy { max-width: 760px; }
.vision__statement { margin-top: 30px; font-size: clamp(24px, 2.4vw, 38px); font-weight: 500; line-height: 1.34; letter-spacing: -.012em; }
.vision__text { margin-top: 28px; font-size: 17px; line-height: 1.8; color: rgba(255, 255, 255, .8); max-width: 60ch; }
.commitments { margin-top: clamp(64px, 8vw, 120px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.commitments li { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .3); position: relative; }
.commitments li::before { content: ""; position: absolute; top: -1px; left: 0; width: 44px; height: 2px; background: var(--red); }
.commitments h3 { font-size: 19px; font-weight: 600; }
.commitments p { margin-top: 8px; font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, .72); }

/* =========================================================
   NEWS
   ========================================================= */
.news { padding: var(--section) 0; background: var(--white); }
.news__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px clamp(40px, 6vw, 110px); align-items: start; }
.news__grid .display { font-size: clamp(44px, 6vw, 92px); letter-spacing: -.03em; }
.news__empty { padding: clamp(32px, 3.4vw, 52px); border: 1px solid var(--grey-150); border-radius: 22px; background:
  linear-gradient(135deg, rgba(227, 6, 19, .035), rgba(243, 162, 94, .06)); display: grid; gap: 18px; justify-items: start; }
.news__lead { font-size: clamp(20px, 1.7vw, 26px); font-weight: 500; line-height: 1.4; color: var(--ink); }
.news__empty p:not(.news__lead) { font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 60ch; }
.news__empty a:not(.btn) { color: var(--red); text-underline-offset: 3px; }
.news__empty .btn { margin-top: 8px; }

/* =========================================================
   CAREERS
   ========================================================= */
.careers { position: relative; padding: var(--section) 0; background: var(--black); color: var(--white); overflow: hidden; isolation: isolate; }
.careers::before { content: ""; position: absolute; z-index: -1; width: 70vw; height: 70vw; right: -30vw; top: -30vw; border-radius: 50%; background: radial-gradient(closest-side, rgba(227, 6, 19, .32), rgba(227, 6, 19, 0)); }
.careers__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 40px clamp(40px, 6vw, 110px); align-items: end; }
.careers .display { max-width: 13ch; }
.careers__body { display: grid; gap: 1.1em; justify-items: start; font-size: 17px; line-height: 1.8; color: rgba(255, 255, 255, .78); }
.careers__body .btn { margin-top: 14px; letter-spacing: .04em; }
.careers__areas { grid-column: 1 / -1; margin-top: clamp(40px, 5vw, 72px); padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .18); }
.careers__areas p { font-size: 14px; color: rgba(255, 255, 255, .55); margin-bottom: 16px; }
.careers__areas ul { display: flex; flex-wrap: wrap; gap: 10px 0; }
.careers__areas li { font-size: clamp(16px, 1.35vw, 20px); font-weight: 500; color: var(--white); }
.careers__areas li:not(:last-child)::after { content: "/"; color: var(--red); padding: 0 .75em; font-weight: 400; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: var(--section) 0; background: var(--white); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 56px clamp(40px, 6vw, 110px); }
.contact__info .display { max-width: 12ch; }
.contact__info .lead-muted { margin-top: 26px; }
.contact__list { margin-top: 40px; display: grid; }
.contact__list > div { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--grey-150); }
.contact__list > div:last-child { border-bottom: 1px solid var(--grey-150); }
.contact__list dt { font-size: 14px; color: var(--grey-500); }
.contact__list dd { font-size: 16.5px; font-weight: 500; }
.contact__list a { text-decoration: none; background: linear-gradient(var(--red), var(--red)) 0 100% / 0 1.5px no-repeat; transition: background-size .4s var(--ease), color .3s; }
.contact__list a:hover { color: var(--red); background-size: 100% 1.5px; }

.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 22px; padding: clamp(28px, 3vw, 48px); background: var(--grey-50); border-radius: 26px; align-self: start; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; color: var(--ink); }
.field input, .field textarea { width: 100%; padding: 15px 18px; border: 1px solid var(--grey-300); border-radius: 14px; background: var(--white); font-size: 16px; line-height: 1.5; transition: border-color .25s, box-shadow .25s; resize: vertical; }
.field textarea { min-height: 150px; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 4px rgba(227, 6, 19, .12); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--red); }
.field__err { min-height: 1.4em; font-size: 13px; line-height: 1.4; color: var(--red); }
.contact__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 8px; }
.contact__submit .form-msg { margin: 0; flex: 1 1 260px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta { position: relative; overflow: hidden; isolation: isolate; padding: clamp(80px, 9vw, 130px) 0; background: var(--red); color: var(--white); }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 140% at 100% 0%, rgba(255, 120, 90, .38), rgba(255, 120, 90, 0) 60%), radial-gradient(70% 120% at 0% 100%, rgba(120, 0, 8, .55), rgba(120, 0, 8, 0) 60%); }
.cta::after { content: ""; position: absolute; left: -10%; right: -10%; top: -120px; height: 200px; border-radius: 50%; border-bottom: 1px solid rgba(255, 255, 255, .28); z-index: -1; }
.cta__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px clamp(40px, 6vw, 100px); align-items: center; }
.cta__title { font-size: clamp(34px, 4vw, 60px); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; max-width: 19ch; }
.cta__sub { margin-top: 20px; font-size: clamp(17px, 1.3vw, 20px); color: rgba(255, 255, 255, .9); }
.notify--cta { width: 100%; }
.notify--cta .notify__field { box-shadow: 0 24px 50px -24px rgba(60, 0, 0, .7); }
.notify--cta .notify__field .btn { background: var(--black); box-shadow: none; letter-spacing: .03em; }
.notify--cta .notify__field .btn:hover { background: #2A2A2A; }
.notify--cta .form-msg { color: var(--white); }
.notify--cta .form-msg.is-error, .notify--cta .form-msg.is-success { color: var(--white); }
.notify--cta.is-invalid .notify__field { box-shadow: 0 0 0 3px rgba(255, 255, 255, .9); }
.cta__mail { margin-top: 6px; font-size: 15px; color: rgba(255, 255, 255, .85); }
.cta__mail a { color: var(--white); font-weight: 500; text-underline-offset: 3px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--black); color: rgba(255, 255, 255, .72); padding: 64px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.footer__brand { display: flex; align-items: center; gap: 18px; text-decoration: none; }
.footer__brand img { width: 118px; }
.footer__brand span { padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .25); font-size: 13px; font-weight: 500; letter-spacing: .34em; color: var(--white); }
.footer__values, .footer__place { font-size: 13px; font-weight: 500; letter-spacing: .28em; color: var(--white); }
.footer__values i, .footer__place i { font-style: normal; color: var(--red); padding: 0 .5em; }
.footer__place { justify-self: end; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; font-size: 14px; }
.footer__links { display: flex; gap: 32px; }
.footer__links a { text-decoration: none; color: rgba(255, 255, 255, .72); transition: color .25s; }
.footer__links a:hover { color: var(--white); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-head { border-bottom: 1px solid var(--grey-150); }
.legal-head__inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.legal-head img { width: 132px; }
.legal-head .btn { padding: 12px 22px; font-size: 15px; }
.legal { max-width: calc(820px + 2 * var(--gutter)); padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(72px, 9vw, 120px); }
.legal .display { margin-bottom: 12px; }
.legal__meta { color: var(--grey-500); margin-bottom: 40px; }
.legal h2 { margin: 40px 0 10px; font-size: 20px; font-weight: 600; }
.legal p { color: var(--ink-soft); line-height: 1.8; }
.legal p + p { margin-top: 1em; }
.legal a:not(.btn) { color: var(--red); }

/* =========================================================
   REVEAL
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE (desktop-first, graceful degradation)
   ========================================================= */
@media (max-height: 800px) and (min-width: 721px) {
  .hero__mouse { display: none; }
  .hero__scroll { bottom: clamp(60px, 8vh, 80px); }
  .hero__launch { margin-top: clamp(16px, 3vh, 30px); }
  .notify--hero { margin-top: clamp(18px, 3vh, 30px); }
}

@media (max-width: 1280px) {
  .nav__menu ul { gap: 26px; }
  .nav__menu a { font-size: 14.5px; }
  .hero__pillars { top: 23%; }
}

@media (max-width: 1100px) {
  :root { --nav-h: 76px; }
  .nav__divider { display: none; }
  .nav__toggle { display: block; }
  .nav__cta { margin-left: auto; padding: 13px 22px; font-size: 15px; }
  .nav__toggle { margin-left: 0; }
  .nav__menu { position: fixed; top: var(--nav-h); left: 12px; right: 12px; margin: 0; padding: 12px 24px; background: #FFFFFF; -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border-radius: 20px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .3); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__menu ul { flex-direction: column; gap: 0; }
  .nav__menu li + li { border-top: 1px solid var(--grey-150); }
  .nav__menu a { padding: 14px 0; font-size: 17px; }
  .nav__indicator { display: none; }

  .hero__pillars, .hero__script { display: none; }
  .businesses__intro { grid-template-columns: 1fr; }
  .about__head, .about__body, .about__pillars { grid-column: 1 / -1; grid-row: auto; }
  .about__pillars { padding: 28px 0 0 28px; }
  .about__ambition p { grid-column: 1 / -1; }
  .mission__grid, .news__grid, .careers__grid, .contact__grid, .cta__grid { grid-template-columns: 1fr; }
  .principles, .commitments { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles li:nth-child(3) { border-left: 0; padding-left: 0; }
  .principles li:nth-child(n+3) { border-top: 1px solid var(--grey-300); }
}

/* Ecosystem becomes a tiled grid on narrower screens */
@media (max-width: 860px) {
  .eco { aspect-ratio: auto; background: none; container-type: normal; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 8px; }
  .tile { position: relative; inset: auto; clip-path: none; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; }
  .tile__img { background-size: cover; background-position: center; transform-origin: center; }
  .tile--consumer .tile__img { background-image: url("../img/eco/consumer.jpg"); }
  .tile--hospitality .tile__img { background-image: url("../img/eco/hospitality.jpg"); }
  .tile--realty .tile__img { background-image: url("../img/eco/realty.jpg"); }
  .tile--media .tile__img { background-image: url("../img/eco/media.jpg"); }
  .tile--infra .tile__img { background-image: url("../img/eco/infra.jpg"); }
  .tile--education .tile__img { background-image: url("../img/eco/education.jpg"); }
  .tile--fintech .tile__img { background-image: url("../img/eco/fintech.jpg"); }
  .tile--network .tile__img { background-image: url("../img/eco/network.jpg"); }
  .tile--sports .tile__img { background-image: url("../img/eco/sports.jpg"); }
  .tile::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05) 70%); }
  .tile__label { z-index: 2; left: 14px; right: 14px; top: auto; bottom: 14px; }
  .tile__label h3 { font-size: 15px; }
  .tile__label p { font-size: 13px; margin-top: 4px; }
  .tile__status { display: none; }
  .tile__points { display: none; }
  .eco__core { position: relative; left: auto; top: auto; transform: none; grid-column: 1 / -1; grid-row: 1; width: min(84vw, 360px); margin: 8px auto 24px; }
  .eco__core::after { inset: -10px; }
  .eco__core img { width: 70%; }
  .eco__core-group { font-size: 12px; margin-top: 14px; }
  .eco__core-rule { width: 40px; margin: 12px 0; }
  .eco__core-title { font-size: 16px; }
  .eco__core-sub { font-size: 9.5px; margin-top: 10px; }
  .eco__core::before { background-size: 6px 6px; }
}

@media (max-width: 720px) {
  .nav__cta { display: none; }
  .nav__toggle { margin-left: auto; }
  .hero { min-height: max(100svh, 640px); }
  .hero__media img { object-position: 74% 60%; }
  .hero__group { letter-spacing: .45em; text-indent: .45em; }
  .hero__sub { letter-spacing: .22em; text-indent: .22em; }
  .hero__launch { letter-spacing: .18em; text-indent: .18em; font-size: 28px; }
  .notify__field { padding-left: 18px; }
  .notify__field .btn { padding: 15px 18px; font-size: 15px; }
  .notify__field .ico { display: none; }
  .hero__corner { display: none; }
  .principles, .commitments { grid-template-columns: 1fr; }
  .principles li { border-left: 0 !important; padding-left: 0 !important; border-top: 1px solid var(--grey-300); }
  .principles li:first-child { border-top: 0; }
  .contact__form { grid-template-columns: 1fr; }
  .contact__list > div { grid-template-columns: 1fr; gap: 2px; }
  .footer__top { grid-template-columns: 1fr; justify-items: start; }
  .footer__place { justify-self: start; }
}

@media (max-width: 520px) {
  .eco { grid-template-columns: 1fr; }
  .notify__field { flex-wrap: wrap; border-radius: 22px; padding: 8px; }
  .notify__field input { padding: 12px 12px; }
  .notify__field .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal, .js .hero [data-load] { opacity: 1; transform: none; }
}
