/* ============================================================
   GraphLinq Clone — Pink Palette Override
   Original: graphlinq.io (Webflow)
   Color mapping:
     --color--black (#0f0a15)  → dark rose/burgundy (#1a0510)
     --color--primary (#a569ff)  → hot pink (#ff2d87)
     --color--accent-primary (#69ffa5) → light pink (#ffb3d1)
     --color--accent-secondary (#ff69c3) → deep magenta (#e91e8c)
     --color--accent-tertius (#3ec1ed) → coral pink (#ff6fa8)
     --color--secondary (#69d2ff) → blush pink (#ffacc7)
     purple/violet gradients → pink/magenta gradients
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { text-size-adjust: 100%; font-family: sans-serif; scroll-behavior: smooth; }
body { margin: 0; background-color: #1a0510; color: #ffffff; font-family: 'Inter', 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; background-color: transparent; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0; }
button { cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { display: inline-block; }

/* ---- CSS Custom Properties (Pink Palette) ---- */
:root {
  --color--black: #1a0510;
  --color--black-2: #220812;
  --color--dark-rose: #2d0a1a;
  --color--primary: #ff2d87;
  --color--primary-dark: #cc1e6b;
  --color--primary-light: #ff6aaa;
  --color--accent-primary: #ffb3d1;
  --color--accent-secondary: #e91e8c;
  --color--accent-tertius: #ff6fa8;
  --color--secondary: #ffacc7;
  --color--white: #ffffff;
  --color--muted: #c490a8;
  --color--border: rgba(255,100,160,0.2);
  --color--card-bg: rgba(255,45,135,0.06);
  --color--card-border: rgba(255,45,135,0.18);

  --gradient-primary: linear-gradient(135deg, #ff2d87 0%, #e91e8c 50%, #c2185b 100%);
  --gradient-secondary: linear-gradient(270deg, #ff6aaa, #ff2d87);
  --gradient-accent: linear-gradient(267deg, #ffacc7, #ff2d87);
  --gradient-button: linear-gradient(135deg, #ff2d87, #e91e8c);
  --gradient-dark: linear-gradient(135deg, #2d0a1a 0%, #1a0510 100%);

  --margin--16: 1rem;
  --margin--24: 1.5rem;
  --margin--32: 2rem;
  --margin--48: 3rem;
  --margin--64: 4rem;
  --margin--80: 5rem;
  --margin--120: 7.5rem;
  --margin--200: 12.5rem;

  --font-size--h1: clamp(2.5rem, 5vw, 4rem);
  --font-size--h2: clamp(2rem, 3.5vw, 3rem);
  --font-size--h3: clamp(1.5rem, 2.5vw, 2rem);
  --font-size--h4: clamp(1.1rem, 1.8vw, 1.4rem);
  --font-size--large: 1.125rem;
  --font-size--medium: 1rem;
  --font-size--small: 0.875rem;
  --font-size--xsmall: 0.75rem;

  --border-radius--sm: 8px;
  --border-radius--md: 12px;
  --border-radius--lg: 20px;
  --border-radius--full: 100px;

  --transition: all 0.3s ease;
  --shadow-glow: 0 0 40px rgba(255,45,135,0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

/* ---- Typography ---- */
.heading-style-h1 { font-size: var(--font-size--h1); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.heading-style-h2 { font-size: var(--font-size--h2); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.heading-style-h3 { font-size: var(--font-size--h3); font-weight: 700; line-height: 1.25; }
.heading-style-h4 { font-size: var(--font-size--h4); font-weight: 600; line-height: 1.3; }
.text-size-large { font-size: var(--font-size--large); font-weight: 500; line-height: 1.5; color: #fff; }
.text-size-medium { font-size: var(--font-size--medium); line-height: 1.6; color: #fff; }
.text-size-regular { font-size: var(--font-size--small); line-height: 1.5; }
.text-size-alternative { font-size: var(--font-size--small); line-height: 1.5; color: var(--color--muted); }
.text-color-primary { color: var(--color--primary); }
.text-style-muted { color: var(--color--muted); }
.opacity-8 { opacity: 0.8; }
.text-align-center { text-align: center; }

/* ---- Layout ---- */
.page-wrapper { overflow-x: hidden; }
.container-large { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.padding-global { padding: 0 2rem; }
.padding-vertical { padding-top: 0; padding-bottom: 0; }
.padding-large { padding-top: 5rem; padding-bottom: 5rem; }
.padding-section-large { padding-top: 7rem; padding-bottom: 7rem; }
.padding-section-medium { padding-top: 5rem; padding-bottom: 5rem; }
.max-width-xlarge { max-width: 900px; }
.max-width-466 { max-width: 466px; }
.max-width-large { max-width: 700px; }
.max-width-medium { max-width: 540px; }
.layer { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; }
.z-index-1 { position: relative; z-index: 1; }
.z-index-2 { position: relative; z-index: 2; }

/* ---- Margins ---- */
.margin-bottom { margin-bottom: 0; }
.margin-bottom.margin-xsmall { margin-bottom: 0.5rem; }
.margin-bottom.margin-small { margin-bottom: 0.75rem; }
.margin-bottom.margin-medium { margin-bottom: 1.5rem; }
.margin-bottom.margin-large { margin-bottom: 2rem; }
.margin-bottom.margin-xlarge { margin-bottom: 2.5rem; }
.margin-bottom.margin-xxsmall { margin-bottom: 0.375rem; }
.margin-top { margin-top: 0; }
.margin-top.margin-medium { margin-top: 1.5rem; }
.margin-top.margin-large { margin-top: 2rem; }
.margin-top.margin-xlarge { margin-top: 2.5rem; }
.margin-top.margin-xhuge { margin-top: 5rem; }
.margin-top.margin-xxhuge { margin-top: 6rem; }
.margin-top.margin-custom1 { margin-top: 3rem; }

/* ---- Buttons ---- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius--full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.button.is-primary {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,45,135,0.4);
}
.button.is-primary:hover { box-shadow: 0 6px 30px rgba(255,45,135,0.6); transform: translateY(-1px); }
.button.is-secondary {
  background: rgba(255,45,135,0.12);
  color: #fff;
  border: 1px solid rgba(255,45,135,0.35);
}
.button.is-secondary:hover { background: rgba(255,45,135,0.22); border-color: rgba(255,45,135,0.6); }
.button.is-small { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.button.is-color {
  background: linear-gradient(267deg, #ffacc7, #ff2d87);
  color: #fff;
}
.button.is-color-black {
  background-color: #220812;
  background-image: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.button.is-color-black:hover { border-color: rgba(255,45,135,0.4); }
.button.is-change {
  background: linear-gradient(270deg, #ff2d87, #c2185b);
  color: #fff;
}
.button.is-icon { padding: 0.55rem; border-radius: 50%; }
.button.left { margin-right: auto; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26,5,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,45,135,0.12);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(26,5,16,0.96); border-bottom-color: rgba(255,45,135,0.2); }
.container-large.is-navbar { display: flex; align-items: center; justify-content: space-between; padding-top: 0.85rem; padding-bottom: 0.85rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { height: 22px; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.dd-wrap { display: flex; align-items: center; }
.dd-right-padding { display: flex; align-items: center; gap: 0; }
.dd-menu { position: relative; }
.dd-togle { display: flex; align-items: center; gap: 4px; cursor: pointer; padding: 0.5rem 0.75rem; border-radius: var(--border-radius--sm); transition: var(--transition); }
.dd-togle:hover { background: rgba(255,45,135,0.08); }
.dd-togle .w-nav-link { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
.dd-togle:hover .w-nav-link { color: #fff; }
.text-style-link { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.text-style-link:hover { color: #fff; }
.dd-list {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #220812;
  border: 1px solid rgba(255,45,135,0.2);
  border-radius: var(--border-radius--lg);
  padding: 1.5rem;
  min-width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,45,135,0.1);
  z-index: 200;
  animation: fadeDown 0.2s ease;
}
.dd-menu:hover .dd-list { display: block; }
@keyframes fadeDown { from { opacity:0; transform: translateX(-50%) translateY(-8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.all-dd-wrapper { display: flex; flex-direction: column; gap: 0.75rem; }
.nav-card { display: flex; align-items: flex-start; gap: 1rem; padding: 0.75rem; border-radius: var(--border-radius--md); transition: var(--transition); }
.nav-card:hover { background: rgba(255,45,135,0.08); }
.icon-1x1-medium { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
.icon-1x1-small { width: 16px; height: 16px; flex-shrink: 0; }
.nav-card .text-size-large { font-size: 0.95rem; margin-bottom: 0.2rem; }
.nav-card .text-size-alternative { font-size: 0.78rem; color: var(--color--muted); line-height: 1.4; }
.text-style-link.is-padding { display: inline-block; margin-top: 0.3rem; font-size: 0.78rem; color: var(--color--primary); }
.text-style-link.is-padding:hover { text-decoration: underline; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-icon-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; color: rgba(255,255,255,0.6); transition: var(--transition); }
.nav-icon-link:hover { color: var(--color--primary); background: rgba(255,45,135,0.1); }
.nav-get-started {
  background: var(--gradient-button);
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--border-radius--full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-get-started:hover { box-shadow: 0 4px 20px rgba(255,45,135,0.5); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ---- Hero Section ---- */
.section_hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 100px;
  overflow: hidden;
  background: var(--color--black);
}
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.img-bg-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  filter: hue-rotate(200deg) saturate(1.4) brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,45,135,0.15) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(26,5,16,0.3) 0%, rgba(26,5,16,0.8) 70%, #1a0510 100%);
}
.hero_component {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
.new_header-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.new_subheading-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.hero_all-cta-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,45,135,0.15);
  border-top: 1px solid rgba(255,45,135,0.2);
  border-bottom: 1px solid rgba(255,45,135,0.2);
}
.cta-wrap {
  padding: 2rem 2rem;
  background: rgba(26,5,16,0.6);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}
.cta-wrap:hover { background: rgba(255,45,135,0.08); }
.cta-wrap h4 { font-size: 1.1rem; font-weight: 600; color: #fff; }
.cta-wrap .text-size-medium { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.hero_bg-bottom {
  height: 3px;
  background: var(--gradient-primary);
  margin-top: 0;
}
.divider { height: 1px; background: rgba(255,45,135,0.2); }
.marquee-section { padding: 1.5rem 0 2.5rem; }
.marquee-label { font-size: 0.8rem; color: var(--color--muted); text-align: center; margin-bottom: 1.5rem; letter-spacing: 0.03em; }

/* ---- Marquee ---- */
.marquee-horizontal { overflow: hidden; width: 100%; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.track-horizontal {
  display: flex;
  animation: marquee-left 30s linear infinite;
  width: max-content;
}
.marquee_logos { display: flex; align-items: center; gap: 3rem; padding: 0.5rem 1.5rem; }
.track-element, .track-element-2, .track-element-3, .track-element-4, .track-element-5, .track-element-6, .track-element-7 {
  display: flex;
  align-items: center;
  height: 28px;
  opacity: 0.6;
  filter: brightness(1.2);
  transition: opacity 0.2s;
}
.track-element:hover, .track-element-2:hover { opacity: 0.9; }
.track-element svg, .track-element-2 svg, .track-element-3 svg, .track-element-4 svg, .track-element-5 svg, .track-element-6 svg, .track-element-7 svg { height: 24px; width: auto; max-width: 120px; }
@keyframes marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ---- Section Ecosystem ---- */
.section_ecosystem {
  padding: 5rem 0;
  background: #1a0510;
  position: relative;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color--primary);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color--primary);
  border-radius: 2px;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ecosystem-card {
  background: rgba(255,45,135,0.05);
  border: 1px solid rgba(255,45,135,0.15);
  border-radius: var(--border-radius--lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
}
.ecosystem-card:hover { border-color: rgba(255,45,135,0.35); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(255,45,135,0.12); }
.ecosystem-card:hover::before { opacity: 1; }
.card-icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,45,135,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon-wrap svg { width: 28px; height: 28px; }
.ecosystem-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.ecosystem-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 1.5rem; }
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255,45,135,0.12);
  border: 1px solid rgba(255,45,135,0.25);
  border-radius: var(--border-radius--full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color--primary);
  margin-bottom: 1rem;
}
.price-badge .price-dot { width: 6px; height: 6px; border-radius: 50%; background: #69ffaa; box-shadow: 0 0 6px #69ffaa; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
.price-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.price-link { font-size: 0.78rem; color: var(--color--primary); font-weight: 500; display: flex; align-items: center; gap: 0.25rem; }
.price-link:hover { text-decoration: underline; }

/* ---- Section Offer ---- */
.section_offer {
  padding: 5rem 0;
  background: #1e0713;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.offer-card {
  background: rgba(255,45,135,0.04);
  border: 1px solid rgba(255,45,135,0.12);
  border-radius: var(--border-radius--lg);
  padding: 2rem;
  transition: var(--transition);
}
.offer-card:hover { border-color: rgba(255,45,135,0.3); background: rgba(255,45,135,0.08); }
.offer-dot-row { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.offer-dot { width: 10px; height: 10px; border-radius: 50%; }
.offer-dot.blue { background: #ff6aaa; }
.offer-dot.red { background: #e91e8c; }
.offer-dot.purple { background: #ff2d87; }
.offer-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.offer-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ---- Section GraphLinq (product showcase) ---- */
.section_graphlinq {
  padding: 5rem 0;
  background: #1a0510;
  overflow: hidden;
}
.section_graphlinq.is-height { background: #1e0713; }
.section_graphlinq.is-height-2 { background: #1a0510; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-layout.reverse { direction: rtl; }
.product-layout.reverse > * { direction: ltr; }
.product-content { display: flex; flex-direction: column; gap: 1.5rem; }
.product-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color--primary); }
.product-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; }
.product-content p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.product-img-wrap {
  position: relative;
  border-radius: var(--border-radius--lg);
  overflow: hidden;
  border: 1px solid rgba(255,45,135,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,45,135,0.1);
}
.product-img { width: 100%; height: auto; display: block; filter: hue-rotate(200deg) saturate(0.9); }

/* ---- Section Cards (features) ---- */
.section_cards {
  padding: 4rem 0;
  background: #1a0510;
}
.section_cards.liner-bg {
  background: linear-gradient(to bottom, #1e0713, #1a0510);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.feature-card {
  background: rgba(255,45,135,0.04);
  border: 1px solid rgba(255,45,135,0.12);
  border-radius: var(--border-radius--lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(255,45,135,0.28); background: rgba(255,45,135,0.07); transform: translateY(-3px); }
.feature-card-icon { width: 44px; height: 44px; margin-bottom: 1.25rem; border-radius: 10px; background: rgba(255,45,135,0.12); display: flex; align-items: center; justify-content: center; }
.feature-card-icon img { width: 26px; height: 26px; filter: hue-rotate(200deg) saturate(1.4); }
.feature-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ---- How To Steps ---- */
.how-to-section { margin-top: 4rem; }
.how-to-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(255,45,135,0.4);
}
.step-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.step-item p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ---- Staking ---- */
.staking-section {
  margin-top: 5rem;
  background: rgba(255,45,135,0.04);
  border: 1px solid rgba(255,45,135,0.15);
  border-radius: var(--border-radius--lg);
  padding: 3rem;
}
.staking-header { text-align: center; margin-bottom: 3rem; }
.staking-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.tier-card {
  background: rgba(255,45,135,0.06);
  border: 1px solid rgba(255,45,135,0.18);
  border-radius: var(--border-radius--md);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.tier-card:hover { border-color: rgba(255,45,135,0.4); transform: translateY(-3px); }
.tier-apy {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.tier-name { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.tier-amount { font-size: 1rem; font-weight: 600; color: #fff; }
.staking-note { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---- Integrations ---- */
.integrations-section { margin-top: 4rem; text-align: center; }
.integrations-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 2rem; color: rgba(255,255,255,0.8); }
.integrations-grid { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.integration-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255,45,135,0.05);
  border: 1px solid rgba(255,45,135,0.12);
  border-radius: var(--border-radius--full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.integration-item:hover { border-color: rgba(255,45,135,0.3); background: rgba(255,45,135,0.1); }
.integration-item img { width: 20px; height: 20px; border-radius: 4px; filter: hue-rotate(200deg); }

/* ---- Big Feature Cards (GraphLinq specific) ---- */
.big-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.big-card {
  background: rgba(255,45,135,0.05);
  border: 1px solid rgba(255,45,135,0.14);
  border-radius: var(--border-radius--lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.big-card:hover { border-color: rgba(255,45,135,0.3); }
.big-card-img { width: 100%; max-width: 280px; margin: 1.5rem auto 0; display: block; filter: hue-rotate(200deg) saturate(1.2); }
.tiny-cards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.tiny-card {
  background: rgba(255,45,135,0.05);
  border: 1px solid rgba(255,45,135,0.12);
  border-radius: var(--border-radius--md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.tiny-card:hover { border-color: rgba(255,45,135,0.28); background: rgba(255,45,135,0.08); }
.tiny-card img { width: 48px; height: 48px; margin: 0 auto 0.75rem; filter: hue-rotate(200deg) saturate(1.2); }
.tiny-card p { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ---- Video Section ---- */
.video-section { padding: 5rem 0; background: #1e0713; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.video-card {
  position: relative;
  border-radius: var(--border-radius--md);
  overflow: hidden;
  border: 1px solid rgba(255,45,135,0.15);
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 16/9;
}
.video-card:hover { border-color: rgba(255,45,135,0.4); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.video-card img { width: 100%; height: 100%; object-fit: cover; filter: hue-rotate(200deg) saturate(0.8); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,5,16,0.4);
}
.video-play-btn svg { width: 52px; height: 52px; filter: drop-shadow(0 4px 12px rgba(255,45,135,0.5)); }
.video-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(to top, rgba(26,5,16,0.9), transparent); font-size: 0.82rem; color: #fff; }

/* ---- Reviews / Testimonials ---- */
.section_reviews {
  padding: 5rem 0;
  background: #1a0510;
  position: relative;
  overflow: hidden;
}
.review-bg { position: absolute; inset: 0; z-index: 0; }
.review-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: hue-rotate(200deg) saturate(1.5) brightness(0.5); }
.reviews-inner { position: relative; z-index: 1; }
.main-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.main-review-card {
  background: rgba(34,8,18,0.8);
  border: 1px solid rgba(255,45,135,0.2);
  border-radius: var(--border-radius--lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.main-review-card:hover { border-color: rgba(255,45,135,0.4); transform: translateY(-3px); }
.review-quote { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,45,135,0.3); }
.reviewer-name { font-size: 0.875rem; font-weight: 600; }
.reviewer-role { font-size: 0.78rem; color: var(--color--muted); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: var(--color--primary); font-size: 0.9rem; }

/* ---- Twitter / Social Marquee ---- */
.twitter-marquee-section { margin-top: 4rem; overflow: hidden; }
.twitter-track { display: flex; animation: marquee-left 40s linear infinite; width: max-content; gap: 1.25rem; padding: 0.5rem 0; }
.twitter-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(34,8,18,0.8);
  border: 1px solid rgba(255,45,135,0.15);
  border-radius: var(--border-radius--lg);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}
.twitter-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.twitter-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,45,135,0.3); }
.twitter-name { font-size: 0.82rem; font-weight: 600; }
.twitter-handle { font-size: 0.75rem; color: var(--color--muted); }
.twitter-text { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.twitter-icon { margin-left: auto; color: #1da1f2; }

/* ---- Blog Section ---- */
.section_blog {
  padding: 5rem 0;
  background: #1e0713;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.blog-card {
  background: rgba(255,45,135,0.04);
  border: 1px solid rgba(255,45,135,0.12);
  border-radius: var(--border-radius--lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: rgba(255,45,135,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.blog-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: rgba(255,45,135,0.08); }
.blog-img { width: 100%; height: 100%; object-fit: cover; filter: hue-rotate(200deg) saturate(0.8); transition: transform 0.4s; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 1.25rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color--primary);
  margin-bottom: 0.6rem;
}
.blog-title { font-size: 0.9rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.75rem; color: #fff; }
.blog-date { font-size: 0.75rem; color: var(--color--muted); }

/* ---- Footer ---- */
.footer {
  background: #130309;
  border-top: 1px solid rgba(255,45,135,0.12);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,45,135,0.1);
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-icon { width: 32px; height: 32px; }
.footer-logo-text { height: 20px; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 240px; }
.footer-newsletter { display: flex; gap: 0.5rem; }
.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255,45,135,0.06);
  border: 1px solid rgba(255,45,135,0.2);
  border-radius: var(--border-radius--full);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: rgba(255,45,135,0.5); background: rgba(255,45,135,0.09); }
.footer-newsletter button {
  padding: 0.6rem 1.1rem;
  background: var(--gradient-button);
  color: #fff;
  border-radius: var(--border-radius--full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.footer-newsletter button:hover { box-shadow: 0 4px 16px rgba(255,45,135,0.4); }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-link:hover { color: var(--color--primary); }
.footer-social { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,45,135,0.08);
  border: 1px solid rgba(255,45,135,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.social-icon:hover { background: rgba(255,45,135,0.2); border-color: rgba(255,45,135,0.5); color: var(--color--primary); transform: translateY(-2px); }
.social-icon svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- Section Title Block ---- */
.section-title-block { text-align: center; max-width: 680px; margin: 0 auto; }
.section-title-block h2 { margin-bottom: 1rem; }
.section-title-block p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.section-title-block.left { text-align: left; margin: 0; }

/* ---- Glow elements ---- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.glow-pink { background: rgba(255,45,135,0.18); }
.glow-magenta { background: rgba(233,30,140,0.12); }

/* ---- Mobile Nav Dropdown for mobile ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: #1a0510;
  border-bottom: 1px solid rgba(255,45,135,0.2);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link { font-size: 1rem; color: rgba(255,255,255,0.8); padding: 0.6rem 0; border-bottom: 1px solid rgba(255,45,135,0.08); }
.mobile-nav-link:last-child { border-bottom: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ecosystem-grid, .offer-grid, .main-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-layout.reverse { direction: ltr; }
  .big-card-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .staking-tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .dd-wrap, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero_all-cta-wrap { grid-template-columns: 1fr; }
  .ecosystem-grid, .offer-grid, .cards-grid { grid-template-columns: 1fr; }
  .main-reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .staking-tiers { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { justify-content: center; }
  .container-large { padding: 0 1.25rem; }
  .section_graphlinq, .section_cards, .section_ecosystem, .section_offer { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---- Utility ---- */
.hide-tablet { display: block; }
.is-mob { display: none; }
.w-embed { display: contents; }
.w-inline-block { display: inline-block; }
.is-box-shadow { box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
@media (max-width: 768px) { .hide-tablet { display: none; } .is-mob { display: block; } }

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a0510; }
::-webkit-scrollbar-thumb { background: rgba(255,45,135,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,45,135,0.7); }

/* Selection */
::selection { background: rgba(255,45,135,0.35); color: #fff; }

/* ---- Animated gradient text ---- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
