/* ==========================================================================
   AMCOB — Landing Page
   ========================================================================== */

:root {
  /* palette (sampled from AMCOB Landing design) */
  --navy-950: #0D1330;
  --navy-900: #101743;
  --navy-850: #161d40;
  --navy-800: #1C2748;
  --navy-700: #24305A;
  --navy-650: #2D3C69;
  --navy-600: #3A4B82;
  --navy-500: #4C5D96;

  --blue-600: #3B6FD4;
  --blue-500: #8FB0EE;
  --blue-400: #8FB0EE;

  --green-600: #12896A;
  --green-500: #5FE0A8;

  --gold-300: #F7D690;
  --gold-400: #F2C078;
  --gold-500: #E9A93A;
  --gold-600: #CE8924;
  --gold-700: #A66A16;

  --ink-000: #FFFFFF;
  --ink-100: #EEF1FB;
  --ink-300: #C3CAE6;
  --ink-400: #9AA4C9;
  --ink-500: #7885B3;

  --font-display: 'Montserrat', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container: 1280px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  max-width: 100vw;
  padding-top: 0;
  background:
    radial-gradient(1100px 640px at 82% 4%, rgba(233, 169, 58, .16), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--ink-100);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Keep shared main-site header logo intact on this page */
.gyb-page nav .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-right: 0;
  color: #fff;
}

.gyb-page nav .logo img {
  height: 34px;
  width: auto;
  max-width: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  margin: 0;
  color: var(--ink-000);
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: #3B2405;
  box-shadow: 0 10px 24px -8px rgba(233, 169, 58, .55);
  border: none;
}

.btn-gold:hover {
  box-shadow: 0 14px 30px -8px rgba(233, 169, 58, .7);
}

.btn-sm {
  padding: 10px 20px;
  font-size: .78rem;
}

.btn-outline {
  border-color: rgba(242, 192, 120, 60%);
  color: #F2C078;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(247, 214, 144, .08);
}

.btn-outline.blue {
  border-color: rgba(143, 176, 238, 60%);
  color: #8FB0EE;
  background: transparent;
}

.btn-outline.blue:hover {
  background: rgba(143, 176, 238, 8%);
}

.btn-block {
  display: flex;
  width: 100%;
  margin-top: 10px;
  padding: 9px 14px;
  font-size: .68rem;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 19, 48, .72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transform: translateY(0);
  transition: transform .35s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  margin-right: auto;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: .01em;
  color: var(--ink-000);
}

.logo-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .02em;
  color: var(--gold-500);
  white-space: nowrap;
}

.logo-sm .logo-mark {
  font-size: 1.5rem;
}

.logo-sm .logo-tagline {
  font-size: .55rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
  width: 100%;
  justify-content: center;
  color: var(--ink-300);
}

.main-nav a {
  transition: color .15s ease;
  font-weight: 400;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink-000);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.link-login {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--ink-100);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: var(--ink-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink-000);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- section head (shared) ---------- */
.section-head {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-head .gold-heading {
  color: var(--gold-400);
  /* background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); */
  background: linear-gradient(180deg, #fff 0%, var(--gold-400) 45%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-400);
  font-size: 1.05rem;
}

.dash-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0px 0px;
}

.dash {
  display: block;
  width: 30px;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
}

.dash-white {
  display: block;
  width: 6.8px;
  height: 7px;
  background: #7C85AC;
  border-radius: 50%;
}

.section-head::before {
  content: "";
}

.bg-word {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.5rem, 11vw, 9rem);
  color: #5b79c91c;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 46px 0 40px;
  overflow: hidden;
}

.hero::after {
  content: "";
  width: 460px;
  height: 460px;
  background: #5b79c96e;
  position: absolute;
  bottom: 8%;
  left: -18%;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 900px;
  pointer-events: none;
  background: radial-gradient(700px 500px at 78% 20%, rgba(233, 169, 58, .28), transparent 60%),
    radial-gradient(600px 500px at 95% 45%, rgba(91, 120, 201, 0), transparent 65%);
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.09;
  letter-spacing: -.01em;
}

.hero-title span {
  display: block;
  background: linear-gradient(180deg, #fff 0%, var(--gold-400) 45%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title em {
  font-style: normal;
}

.hero-sub {
  margin-top: 24px;
  max-width: 460px;
  color: var(--ink-300);
  font-size: 1.08rem;
}

.store-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 14px;
  background: #050914;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--ink-000);
}

.store-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.15;
}

.store-btn small {
  font-weight: 400;
  font-size: .62rem;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.store-btn-dark {
  background: #0A1024;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.pillars li {
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.pillars li:hover {
  border-color: rgba(233, 169, 58, .55);
  background: rgba(233, 169, 58, .05);
}

.pillars li:hover .dot {
  background: var(--gold-500);
}

.pillars .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-400);
  margin: 0 7px 3px 0;

  transition: all 0.3s ease;
}


.pillars strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ink-000);
  margin-bottom: 6px;
}

.pillars p {
  color: var(--ink-400);
  font-size: .92rem;
}

/* ---------- hero visual / phone / floating cards ---------- */
.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .orbit-rings {
  position: absolute;
  transform: translate(40px, -62px);
  inset: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: url('/assets/img/group_2.webp');
  background-repeat: no-repeat;
  background-size: contain;
} */

.orbit-rings {
    height: 100%;
    position: absolute;
    inset: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: url('/assets/img/home/group_2.webp');
    background-repeat: no-repeat;
    rotate: 77deg;
    background-size: 91%;
    background-position: center;
    animation: orbitRotate 35s linear infinite;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* .orbit-rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.orbit-rings span:nth-child(1) {
  width: 560px;
  height: 560px;
}

.orbit-rings span:nth-child(2) {
  width: 720px;
  height: 720px;
  border-color: rgba(255, 255, 255, .05);
}

.orbit-rings span:nth-child(3) {
  width: 880px;
  height: 880px;
  border-color: rgba(255, 255, 255, .03);
} */

.phone {
  position: relative;
  display: block;
  width: 446.34px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 40px 70px -20px rgba(0, 0, 0, .65));
}

.phone.large {
  width: 508.34px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: .62rem;
  color: var(--navy-800);
  padding: 0 2px;
}

.status-icons {
  letter-spacing: 1px;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-row strong {
  display: block;
  font-size: .78rem;
}

.user-row small {
  display: block;
  color: var(--ink-500);
  font-size: .6rem;
}

.icon-search {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--navy-600);
}

.avatar {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.avatar-sm {
  width: 28px;
  height: 28px;
  font-size: .55rem;
}

.avatar-md {
  width: 36px;
  height: 36px;
  font-size: .65rem;
}

.avatar-navy {
  background: linear-gradient(160deg, var(--navy-600), var(--navy-800));
}

.avatar-blue {
  background: linear-gradient(160deg, var(--blue-500), var(--blue-600));
}

.avatar-green {
  background: linear-gradient(160deg, var(--green-500), var(--green-600));
}

.avatar-gold {
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
  color: #3B2405;
}

.event-card {
  background: linear-gradient(160deg, var(--navy-650), var(--navy-800));
  border-radius: 16px;
  padding: 12px 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-card strong {
  font-size: .82rem;
}

.event-card small {
  color: var(--ink-400);
  font-size: .62rem;
}

.tag {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .05em;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 20px;
}

.tag-live {
  background: rgba(56, 201, 139, .18);
  color: var(--green-500);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.quick-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid>div {
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 12px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .55rem;
  color: var(--navy-700);
}

.quick-grid svg {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
}

.network-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--navy-650), var(--navy-600));
  border-radius: 14px;
  padding: 10px 12px;
  color: #fff;
}

.network-banner svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.network-banner strong {
  display: block;
  font-size: .7rem;
}

.network-banner small {
  font-size: .58rem;
  color: var(--ink-400);
}

.network-banner .chev {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--gold-400);
}

.section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .62rem;
  font-weight: 700;
  color: var(--navy-800);
}

.section-row a {
  color: var(--gold-600);
  font-weight: 600;
}

.people-row {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.person-chip {
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 14px;
  padding: 10px;
  flex: 1;
  min-width: 0;
  position: relative;
}

.person-chip strong {
  display: block;
  font-size: .62rem;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-chip small {
  display: block;
  color: var(--ink-500);
  font-size: .52rem;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-chip .pct {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: .5rem;
  font-weight: 700;
  color: var(--green-600);
}

.mini-btn {
  display: block;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: #3B2405;
  font-size: .52rem;
  font-weight: 700;
  padding: 5px;
  border-radius: 8px;
}

.upcoming-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 14px;
  padding: 10px 12px;
}

.date-chip {
  background: var(--navy-800);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  line-height: 1.1;
}

.date-chip small {
  display: block;
  font-size: .48rem;
  color: var(--ink-400);
}

.date-chip strong {
  font-size: .75rem;
}

.upcoming-row strong {
  display: block;
  font-size: .65rem;
}

.upcoming-row small {
  color: var(--ink-500);
  font-size: .55rem;
}

.pill {
  font-size: .5rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.pill-green {
  background: rgba(56, 201, 139, .16);
  color: var(--green-600);
}

.pill-outline {
  border: 1px solid #dfe3f2;
  color: var(--navy-700);
  margin-left: auto;
}

.pill-xs {
  font-size: .45rem;
  padding: 3px 7px;
}

.pill-blue-soft {
  background: rgba(59, 111, 212, .12);
  color: var(--blue-600);
  font-size: .5rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  width: fit-content;
}

.pill-gold-outline {
  border: 1px solid rgba(233, 169, 58, .5);
  color: var(--gold-300);
}

.bottom-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #e6e9f5;
}

.bottom-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: .5rem;
  color: var(--ink-500);
}

.bottom-nav svg {
  width: 16px;
  height: 16px;
}

.bottom-nav .active {
  color: var(--navy-900);
  font-weight: 700;
}

.bottom-nav .nav-fab {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: #3B2405;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  box-shadow: 0 8px 16px -4px rgba(233, 169, 58, .6);
}

.bottom-nav .nav-fab svg {
  width: 15px;
  height: 15px;
}

.floating-card {
  position: absolute;
  background: #0C1330;
  border: 1px solid #ffffff14;
  color: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .5);
  z-index: 3;
  width: 210px;
}

.floating-card img {
  width: 100%;
  margin-top: 8px;
}

.hero-line {
  width: 100%;
  height: 100%;
  margin-top: 8px;
  display: block;
  overflow: visible;
}

.line-draw-path {
  transition: stroke-dashoffset 1.6s cubic-bezier(.65, 0, .35, 1);
}

.needs-stats .line-draw {
  overflow: visible;
  height: 100%;
  width: 100%;
}

.line-reveal-img {
  transition: clip-path 1.6s cubic-bezier(.65, 0, .35, 1);
}

.card-community {
  top: 8%;
  left: -2%;
}

.fc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
}

.fc-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
}

.fc-headline {
  font-weight: 700;
  margin-top: 8px;
  font-size: .85rem;
}

.sparkline {
  width: 100%;
  height: 26px;
  margin-top: 6px;
}

.sparkline polyline {
  fill: none;
  stroke: var(--green-500);
  stroke-width: 2;
}

.card-summit {
  bottom: 34%;
  left: 5%;
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  background: #0C1330;
  border: 1px solid #ffffff14;
  color: #ffffff;
}

.card-summit strong {
  font-size: .72rem;
  display: block;
}

.card-summit small {
  font-size: .6rem;
  color: var(--ink-400);
}

.card-profile {
  bottom: 26%;
  right: 0%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  background: #FFFFFF;
  border: 1px solid #ffffff14;
  color: #161528;
}

.card-profile strong {
  font-size: .75rem;
  display: block;
}

.card-profile small {
  font-size: .6rem;
  color: var(--ink-500);
}

.pct-lg {
  margin-left: 6px;
  font-weight: 800;
  color: #CE8924;
  font-size: .9rem;
}

/* phone tilts / variants used across sections */

.phone-showcase {
  width: 230px;
}

.phone-show-l {
  transform: rotate(-9deg) translateY(40px);
}

.phone-show-c {
  transform: translateY(-60px);
  z-index: 2;
  width: 67%;
}

.phone-show-r {
  transform: rotate(9deg) translateY(40px);
}

.phone-cta {
  width: 230px;
}

/* ---------- steps ---------- */
.steps {
  padding: 120px 0 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.step-icon-blue {
  background: linear-gradient(160deg, var(--blue-500), var(--blue-600));
}

.step-icon-gold {
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
}

.step-icon-green {
  background: linear-gradient(160deg, var(--green-500), var(--green-600));
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--ink-400);
  font-size: .95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- needs card ---------- */
.needs-card {
  position: relative;
  margin-top: 96px;
  padding: 56px 48px;
  border-radius: 32px;
  background: linear-gradient(179deg, #2D3C69 -100%, #3A4B82, #24305A);
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .06);
}

.needs-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.needs-copy p {
  color: var(--ink-400);
  margin-bottom: 24px;
  max-width: 360px;
}

.needs-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.needs-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-000);
}

.needs-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.needs-icon svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.icon-blue {
  background: linear-gradient(160deg, var(--blue-500), var(--blue-600));
}

.icon-gold {
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
}

.icon-green {
  background: linear-gradient(160deg, var(--green-500), var(--green-600));
}

.needs-stats {
  display: flex;
  flex-direction: column;
  gap: 26px;
      max-width: 300px;
    width: 100%;
}

span.counter-parent {
    width: 48px;
}

.needs-stats li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1.15rem;
}

.needs-stats .spark {
  width: 100px;
  height: 24px;
}

.spark polyline {
  fill: none;
  stroke-width: 2;
}

.spark-green polyline {
  stroke: var(--green-500);
}

.spark-gold polyline {
  stroke: var(--gold-400);
}

.explore-more {
  position: absolute;
  right: 25%;
  bottom: 32px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold-400);
}

/* ---------- features ---------- */
.features {
  padding: 150px 0 60px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 70px; */
  row-gap: 60px;
  align-items: center;
  margin-bottom: 110px;
}

.feature-row-rev {
  direction: rtl;
}

/* .feature-row-rev>* {
  direction: ltr;
} */

.feature-copy h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.feature-copy h3.text-yellow {
  color: #F2C078;
}

.feature-copy h3.text-blue {
  color: #8FB0EE;
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bullet-gold {
  background: var(--gold-500);
}

.bullet-blue {
  background: var(--blue-500);
}

.feature-copy p {
  color: var(--ink-400);
  font-size: 1.02rem;
  margin-bottom: 16px;
  max-width: 460px;
}

.feature-copy .btn {
  margin-top: 12px;
}

.screen-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.screen-title-row svg {
  width: 16px;
  height: 16px;
}

.screen-title-row strong {
  font-size: .85rem;
}

.title-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  color: var(--navy-600);
}

.title-actions svg {
  width: 15px;
  height: 15px;
}

.screen-h {
  font-size: 1rem;
}

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-row-pill {
  margin-top: 2px;
}

.tab {
  font-size: .6rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--ink-500);
  background: #fff;
  border: 1px solid #e6e9f5;
}

.tab.is-active {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.tab-row span:not(.tab) {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .58rem;
  color: var(--navy-700);
  background: #fff;
  border: 1px solid #e6e9f5;
  padding: 6px 10px;
  border-radius: 20px;
}

.tab-row span:not(.tab) svg {
  width: 13px;
  height: 13px;
}

.stat-trio {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.stat-trio strong {
  display: block;
  font-size: .95rem;
}

.stat-trio small {
  color: var(--ink-500);
  font-size: .55rem;
}

.matches-card {
  background: linear-gradient(135deg, var(--navy-650), var(--navy-800));
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.matches-card strong {
  font-size: .78rem;
}

.matches-card small {
  color: var(--ink-400);
  font-size: .6rem;
}

.mini-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-500);
  text-transform: uppercase;
}

.need-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 12px;
  padding: 8px 10px;
}

.need-ico {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--navy-800);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.need-ico svg {
  width: 13px;
  height: 13px;
}

.need-ico-green {
  background: var(--green-600);
}

.need-row strong {
  display: block;
  font-size: .62rem;
}

.need-row small {
  color: var(--ink-500);
  font-size: .55rem;
}

.progress {
  display: block;
  margin-top: 4px;
  height: 4px;
  width: 100%;
  background: #e6e9f5;
  border-radius: 4px;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
}

.composer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 14px;
  padding: 8px 10px;
}

.composer-input {
  font-size: .62rem;
  color: var(--ink-500);
}

.post-card {
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-head strong {
  display: block;
  font-size: .65rem;
}

.post-head small {
  color: var(--ink-500);
  font-size: .55rem;
}

.post-head .pill {
  margin-left: auto;
}

.post-card p {
  font-size: .62rem;
  color: var(--navy-700);
}

.post-media {
  height: 70px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: flex-end;
  padding: 8px;
}

.post-media span {
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
}

.post-actions {
  display: flex;
  gap: 14px;
  font-size: .55rem;
  color: var(--ink-500);
}

/* ---------- how it works ---------- */
.how-it-works {
  padding: 60px 0 140px;
}

.showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -20px;
  padding: 40px 0 20px;
}

.showcase .phone {
  margin: 0 -22px;
}

.play-btn {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
  color: #2A1B05;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -10px rgba(233, 169, 58, 100%);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
  fill: #2A1B05;
}

.ticket-title {
  font-size: .85rem;
  display: block;
  margin-top: 4px;
}

.ticket-meta {
  display: block;
  font-size: .58rem;
  line-height: 1.7;
  margin: 6px 0;
}

.ticket-copy {
  font-size: .6rem;
  color: var(--ink-300);
  line-height: 1.6;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agenda-list div {
  display: flex;
  gap: 10px;
  font-size: .6rem;
}

.agenda-list strong {
  color: var(--gold-300);
  width: 56px;
  flex-shrink: 0;
}

.host-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.host-row strong {
  display: block;
  font-size: .62rem;
}

.host-row small {
  font-size: .55rem;
}

.host-row a {
  margin-left: auto;
  font-size: .58rem;
  font-weight: 700;
  color: var(--gold-300);
}

.event-card-sm {
  padding: 10px 12px;
}

/* ---------- benefits ---------- */
.benefits {
  position: relative;
  padding: 20px 0 40px;
}

.benefits-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.benefit-list-l {
  text-align: right;
}

.benefit-list-l li {
  flex-direction: row-reverse;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.b-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-icon svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.b-icon-blue {
  background: linear-gradient(160deg, var(--blue-500), var(--blue-600));
}

.b-icon-gold {
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
}

.b-icon-green {
  background: linear-gradient(160deg, var(--green-500), var(--green-600));
}

.b-icon-navy {
  background: linear-gradient(160deg, var(--navy-600), var(--navy-800));
}

.benefit-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.benefit-list small {
  color: var(--ink-400);
  font-size: .85rem;
}

.benefits-photos {
  position: relative;
  width: 600px;
  height: 360px;
  margin: 0 auto;
}

.orbit-rings-lg span:nth-child(1) {
  width: 280px;
  height: 280px;
}

.orbit-rings-lg span:nth-child(2) {
  width: 340px;
  height: 340px;
}

.orbit-rings-lg span:nth-child(3) {
  width: 400px;
  height: 400px;
}

.photo-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 50px -18px rgba(0, 0, 0, .6);
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-circle-a {
  left: 0;
  border: none;
  box-shadow: 0 0 0 0 transparent;
}

.photo-circle-b {
  width: 190px;
  height: 190px;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 90px;
}

.stat-row strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 4vw, 4rem);
  background: linear-gradient(180deg, var(--gold-300), #A66A16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* .stat-row span {
  display: block;
  color: var(--ink-300);
  font-weight: 600;
  margin-top: 4px;
} */

.under {
  display: block;
  width: 40px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
}

.under-blue {
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
}

.under-gold {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
}

/* ---------- get the app ---------- */
.get-app {
  padding: 140px 0 0;
}

.get-app-card {
  background: linear-gradient(195deg, #CDD8F2, #E7E2EE 55%, #F4E6CF);
  border-radius: 32px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  color: var(--navy-950);
}

.get-app-copy h2 {
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  font-weight: 800;
}

.get-app-copy p {
  color: #3d456b;
  max-width: 440px;
  margin-bottom: 26px;
}

/* .get-app .phone {
  transform: rotate(-4deg);
} */

/* ---------- faq ---------- */
.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  padding: 140px 0 40px;
}

.faq-side h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.faq-side .dash-container {
  justify-content: start;
}

.faq-photo {
  width: 220px;
  aspect-ratio: 300/329;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 26px;
}

.faq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--ink-000);
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-q svg {
  transform: rotate(180deg);
}

.faq-item.is-open {
  border: 1px solid #F2C078;
  background: linear-gradient(210deg, #3A4B82, #2D3C69);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 22px;
}

.faq-item.is-open .faq-a {
  max-height: 220px;
  padding: 0 22px 22px;
}

.faq-a p {
  color: var(--ink-400);
  font-size: .95rem;
}

/* ---------- newsletter ---------- */
.newsletter {
  padding: 120px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.35;
}

.subscribe-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border: 2px solid rgba(233, 169, 58, .45);
  border-radius: 999px;
  padding: 6px;
  background: rgba(0, 0, 0, .5);
}

.subscribe-form input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: .95rem;
}

.subscribe-form input::placeholder {
  color: var(--ink-500);
}

.subscribe-form input:focus {
  outline: none;
}

.form-note {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--green-500);
  min-height: 1.2em;
}

/* ---------- footer (shared with main site) ---------- */
footer {
  background: #1A2440;
  color: #cfd5ea;
  margin-top: 70px;
  padding: 30px 0;
}

footer .wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

footer .fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

footer .fcol h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

footer .fcol a {
  display: block;
  color: #a7afce;
  font-size: 14px;
  margin-bottom: 11px;
  transition: .2s;
}

footer .fcol a:hover {
  color: #E4A63F;
}

footer .fabout p {
  font-size: 14px;
  color: #a7afce;
  max-width: 300px;
  margin: 14px 0 18px;
}

footer .fsoc {
  display: flex;
  gap: 10px;
}

footer .fsoc a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd5ea;
}

footer .fsoc a:hover {
  background: #CE8924;
  color: #2a1c05;
}

footer .fsoc svg {
  width: 18px;
  height: 18px;
}

footer .fbot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8890b2;
}

footer .fbot a:hover {
  color: #E4A63F;
}

@media (max-width: 980px) {
  footer .fgrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  footer .fgrid {
    grid-template-columns: 1fr;
  }
}
/* ---------- back to top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #3B2405;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(233, 169, 58, .6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 90;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1100px) {
  .needs-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .needs-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .explore-more {
    position: static;
    display: block;
    margin-top: 20px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width:960px) {
  .main-nav {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 85vw);
    height: calc(100vh - 80px);
    background: var(--navy-950);
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    transform: translateX(110%);
    transition: transform .25s ease;
    overflow: auto;
    box-shadow: -20px 0 40px -10px rgba(0, 0, 0, .5);
  }

  .main-nav.is-open {
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .link-login {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-row,
  .feature-row-rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-row-rev .phone {
    order: 1;
  }

  .phone-tilt-l,
  .phone-tilt-r {
    transform: none;
    margin: 0 auto;
  }

  .benefits-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-list-l {
    text-align: center;
  }

  .benefit-list-l li {
    flex-direction: row;
  }

  .benefits-photos {
    order: -1;
  }

  .get-app-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .get-app .phone {
    margin: 0 auto;
    transform: none;
  }

  .showcase {
    flex-wrap: wrap;
  }

  .showcase .phone {
    margin: 0 -10px;
  }
}

@media (max-width:640px) {
  .container {
    padding: 0 18px;
  }

  .header-actions {
    gap: 10px;
  }

  .icon-btn {
    display: none;
  }

  .btn-sm {
    padding: 9px 14px;
    font-size: .7rem;
  }

  .logo-mark {
    font-size: 1.5rem;
  }

  .logo-tagline {
    font-size: .5rem;
  }

  .hero {
    padding: 64px 0 24px;
  }

  .needs-card {
    padding: 32px 24px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .showcase .phone {
    display: none;
  }

  .showcase .phone-show-c {
    display: block;
    margin: 0 auto;
  }

  .play-btn {
    top: 20%;
  }
}