:root {
  --bg: #07111f;
  --bg-soft: #0d1828;
  --panel: rgba(9, 18, 33, 0.7);
  --panel-strong: rgba(16, 28, 47, 0.9);
  --line: rgba(153, 181, 224, 0.16);
  --line-strong: rgba(153, 181, 224, 0.28);
  --text: #f4f7fb;
  --muted: #aeb9ca;
  --cyan: #66e2ff;
  --gold: #ffc76b;
  --red: #ff7d7d;
  --lime: #9fffbd;
  --button: #f6f7fb;
  --button-text: #081120;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(102, 226, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 199, 107, 0.14), transparent 30%),
    linear-gradient(180deg, #050c16 0%, #09111d 38%, #07111f 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing-shell {
  position: relative;
  isolation: isolate;
}

.aurora,
.grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.aurora {
  filter: blur(70px);
  opacity: 0.75;
}

.aurora-one {
  background: radial-gradient(circle at 18% 24%, rgba(102, 226, 255, 0.18), transparent 25%);
  animation: driftA 16s ease-in-out infinite alternate;
}

.aurora-two {
  background: radial-gradient(circle at 75% 18%, rgba(255, 199, 107, 0.16), transparent 24%);
  animation: driftB 18s ease-in-out infinite alternate;
}

.grid-glow {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 90%);
  opacity: 0.24;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  backdrop-filter: blur(24px);
  background: rgba(5, 11, 21, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), #8fa8ff 52%, #ffe596);
  color: #04101d;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(102, 226, 255, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topnav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.topbar-actions,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--button-text);
  background: linear-gradient(135deg, #ffffff, #c7f4ff 48%, #ffe8ba);
  box-shadow: 0 18px 45px rgba(205, 245, 255, 0.24);
}

.btn-ghost,
.btn-outline {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.btn-xl {
  min-height: 54px;
  padding: 0 22px;
  font-size: 15px;
}

.hero,
.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 78px 0 34px;
}

.eyebrow,
.section-tag,
.mini-label,
.arch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, var(--lime));
  box-shadow: 0 0 18px rgba(159, 255, 189, 0.7);
}

.hero h1 {
  margin: 20px 0 18px;
  max-width: 720px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.headline-flare {
  display: inline-block;
  color: transparent;
  background: linear-gradient(120deg, #ffffff 0%, #90ebff 34%, #ffcb80 70%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}

.hero-text,
.section-heading p,
.pricing-copy p,
.cta-card p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.hero-points li {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-section-custom {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 80px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

/* Eyebrow and Highlights */
.eyebrow-pill {
  border: 1px solid rgba(102, 226, 255, 0.22);
  background: rgba(102, 226, 255, 0.06);
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.eyebrow-sparkle {
  color: #66e2ff;
  animation: haloPulse 2s infinite ease-in-out;
}

.hero-section-custom h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.highlight-gold {
  color: #ffe596;
}

.highlight-cyan {
  color: #66e2ff;
}

/* Buttons */
.btn-xl {
  min-height: 52px;
  padding: 0 24px;
  font-size: 14px;
  border-radius: 12px !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon, .play-icon {
  font-size: 14px;
  transition: transform 0.22s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Mockup Frame & Glow */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-border-frame {
  position: relative;
  width: 100%;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(102, 226, 255, 0.35) 0%, rgba(255, 199, 107, 0.25) 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(102, 226, 255, 0.12),
              0 0 60px rgba(255, 199, 107, 0.08);
}

.dashboard-mockup {
  width: 100%;
  height: 440px;
  background: #070e17;
  border-radius: 19px;
  display: grid;
  grid-template-columns: 52px 1fr;
  overflow: hidden;
  font-family: "Instrument Sans", sans-serif;
}

/* Mockup Sidebar */
.dash-sidebar {
  background: #04080e;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.side-logo {
  margin-bottom: 28px;
}

.side-icons {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  flex: 1;
}

.side-icon {
  color: #435269;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-icon.active, .side-icon:hover {
  color: #66e2ff;
}

.side-footer {
  margin-top: auto;
}

/* Mockup Main Board */
.dash-main {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}

.header-left p {
  font-size: 10px;
  color: #7f8e9c;
  margin: 3px 0 0;
}

.status-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(39, 201, 63, 0.08);
  border: 1px solid rgba(39, 201, 63, 0.22);
  color: #9fffbd;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot-green {
  width: 6px;
  height: 6px;
  background: #27c93f;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #27c93f;
}

/* Cards Grid */
.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dash-card {
  background: #091321;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-title {
  font-size: 9px;
  color: #7f8e9c;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card-value-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 2px;
}

.card-value-row strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.growth {
  font-size: 8px;
  font-weight: 700;
}

.growth.positive {
  color: #9fffbd;
}

.growth.negative {
  color: #ffcb80;
}

.card-sparkline {
  height: 18px;
  margin-top: 6px;
  opacity: 0.8;
}

/* Two Columns Split */
.dash-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.split-left-card {
  background: #091321;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}

.split-left-card h3, .right-crm-card h3 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.mini-chat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.mini-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-avatar.wa-bg { background: rgba(37, 211, 102, 0.15); fill: #25d366; }
.mini-avatar.mail-bg { background: rgba(0, 120, 212, 0.15); fill: #0078d4; }
.mini-avatar.chat-bg { background: rgba(142, 36, 170, 0.15); fill: #a13dff; }

.mini-chat-details {
  flex: 1;
  min-width: 0;
}

.details-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  margin-bottom: 2px;
}

.details-top strong {
  color: #fff;
  font-weight: 600;
}

.details-top span {
  color: #5f6e80;
}

.mini-chat-details p {
  margin: 0;
  font-size: 8px;
  color: #7f8e9c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-badge {
  background: #0084ff;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-view-all {
  margin-top: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border-radius: 6px;
  padding: 6px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-view-all:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Right Column details */
.split-right-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.right-ai-card {
  background: linear-gradient(135deg, rgba(102, 226, 255, 0.1) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(102, 226, 255, 0.22);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ai-card-header .ai-sparkle {
  color: #ffcb80;
  font-size: 11px;
}

.right-ai-card p {
  margin: 0;
  font-size: 9px;
  color: #cde4ff;
  line-height: 1.4;
}

.ai-card-actions {
  display: flex;
  gap: 8px;
}

.btn-mini-send {
  background: #0084ff !important;
  color: #fff !important;
  min-height: 24px !important;
  font-size: 9px !important;
  padding: 0 10px !important;
  border-radius: 4px !important;
}

.btn-mini-edit {
  min-height: 24px !important;
  font-size: 9px !important;
  padding: 0 10px !important;
  border-radius: 4px !important;
}

.right-crm-card {
  background: #091321;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.crm-split {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  align-items: center;
}

.crm-bar-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crm-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.crm-bar-header span {
  color: #7f8e9c;
}

.crm-bar-header strong {
  color: #fff;
}

.crm-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.crm-bar-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 3px;
}

.crm-donut-chart {
  width: 44px;
  height: 44px;
}

.donut {
  transform: rotate(-90deg);
}

/* Feature Ribbon below Hero */
.hero-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  margin-top: 48px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ribbon-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(102, 226, 255, 0.25);
  background: rgba(102, 226, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ribbon-text {
  display: flex;
  flex-direction: column;
}

.ribbon-text strong {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.ribbon-text span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}

.metric-card,
.feature-card,
.arch-card,
.pricing-card,
.stack-card {
  position: relative;
  overflow: hidden;
}

.metric-card {
  min-height: 176px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card span,
.pricing-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-card strong,
.pricing-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.metric-card small,
.pricing-card small {
  color: var(--muted);
  line-height: 1.6;
}

.accent-cyan::before,
.accent-gold::before,
.accent-red::before,
.feature-card::before,
.arch-card::before,
.pricing-card::before,
.stack-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.24;
}

.accent-cyan::before {
  background: var(--cyan);
}

.accent-gold::before {
  background: var(--gold);
}

.accent-red::before {
  background: var(--red);
}

.command-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.command-ribbon span {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
}

.floating-panel {
  width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(12, 23, 38, 0.82);
}

.floating-panel strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 20px;
}

.floating-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.panel-left {
  left: 0;
  bottom: 7%;
  animation: floatCard 7s ease-in-out infinite;
}

.panel-right {
  right: 0;
  top: 30%;
  animation: floatCard 8s ease-in-out infinite reverse;
}

.marquee-band {
  width: min(1280px, calc(100% - 32px));
  margin: 10px auto 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 16px 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  animation: marquee 20s linear infinite;
}

.section {
  padding: 100px 0 0;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading h2,
.showcase-copy h2,
.pricing-copy h2,
.cta-card h2 {
  margin: 16px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.feature-grid,
.architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.arch-card {
  min-height: 280px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(30px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.feature-card h3,
.arch-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
}

.feature-card p,
.arch-card p,
.use-case-list p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-panel,
.pricing-panel,
.cta-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 24, 40, 0.88), rgba(8, 15, 28, 0.94));
  box-shadow: var(--shadow);
}

.showcase-panel {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.use-case-list {
  display: grid;
  gap: 18px;
}

.use-case-list strong {
  font-size: 20px;
}

/* INBOX MOCKUP STYLING */
.inbox-mockup-wrapper {
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.inbox-mockup {
  width: 100%;
  max-width: 580px;
  height: 440px;
  background: rgba(9, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(3deg) translateZ(10px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.inbox-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.03) translateZ(20px);
}

/* Sidebar */
.mockup-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
}

.mockup-search {
  padding: 14px 12px;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}

.mockup-contacts {
  flex: 1;
  overflow-y: auto;
}

.mockup-contact {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.mockup-contact:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mockup-contact.active {
  background: rgba(255, 255, 255, 0.06);
}

.contact-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
}

.contact-avatar.wa { background: rgba(159, 255, 189, 0.15); color: #9fffbd; }
.contact-avatar.mail { background: rgba(255, 199, 107, 0.15); color: #ffc76b; }
.contact-avatar.web { background: rgba(255, 125, 125, 0.15); color: #ff7d7d; }

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-name {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-preview {
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lime);
}

/* Chat area */
.mockup-chat {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.25);
}

.mockup-chat-header {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-user {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.chat-header-status {
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}

.badge-waiting {
  background: rgba(255, 199, 107, 0.15) !important;
  color: #ffc76b !important;
  border: 1px solid rgba(255, 199, 107, 0.3);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 99px;
}

.mockup-messages {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.45;
}

.msg-visitor {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-top-left-radius: 2px;
}

.msg-bot {
  align-self: flex-end;
  background: rgba(102, 226, 255, 0.07);
  border: 1px solid rgba(102, 226, 255, 0.2);
  color: #cceeff;
  border-top-right-radius: 2px;
}

.msg-suggestion {
  align-self: stretch;
  background: linear-gradient(135deg, rgba(102, 226, 255, 0.12), rgba(15, 26, 44, 0.8));
  border: 1px solid rgba(102, 226, 255, 0.28);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 6px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggestion-header {
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.suggestion-body {
  font-size: 11px;
  color: var(--text);
  line-height: 1.4;
}

.btn-sm {
  min-height: 28px !important;
  font-size: 10px !important;
  padding: 0 12px !important;
  align-self: flex-start;
}

.mockup-input {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-placeholder {
  font-size: 11px;
  color: var(--muted);
}

.btn-send {
  background: none;
  border: none;
  color: var(--cyan);
  cursor: pointer;
  font-size: 12px;
  padding: 4px;
}

.pricing-panel {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.pricing-cards {
  display: grid;
  gap: 16px;
}

.pricing-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card.highlighted {
  background: linear-gradient(135deg, rgba(102, 226, 255, 0.12), rgba(255, 199, 107, 0.1));
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-card {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 80px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftA {
  from { transform: translate3d(-4%, -3%, 0) scale(1); }
  to { transform: translate3d(4%, 3%, 0) scale(1.08); }
}

@keyframes driftB {
  from { transform: translate3d(3%, -2%, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.12); }
}

@keyframes shimmer {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes orbitFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes floatCard {
}


/* Bullet points for value description */
.pricing-value-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-icon {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.bullet-item span {
  font-size: 15px;
  color: var(--muted);
}

/* Pricing Card Container & Toggle */
.pricing-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.currency-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.currency-label {
  font-size: 14px;
  color: var(--muted);
}

.currency-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 3px;
  position: relative;
  z-index: 100;
}

.toggle-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 101;
  pointer-events: auto;
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--cyan), #2b82ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102, 226, 255, 0.24);
}

.toggle-btn:hover:not(.active) {
  color: #fff;
}

/* Single plan card styles */
.single-plan-card {
  width: 100%;
  max-width: 480px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.single-plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(102, 226, 255, 0.25), rgba(255, 199, 107, 0.1), rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  background: rgba(102, 226, 255, 0.1);
  border: 1px solid rgba(102, 226, 255, 0.2);
  color: var(--cyan);
  border-radius: 30px;
  text-transform: uppercase;
}

.price-display-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
}

.price-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.price-value {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.price-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.maintenance-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(102, 226, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(102, 226, 255, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
}

.maint-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.maint-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.01em;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e2e8f0;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}

.plan-cta-wrapper {
  margin-top: 10px;
}

.btn-full-width {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .price-display-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  .price-divider {
    width: 100%;
    height: 1px;
  }
  .maintenance-block {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  .single-plan-card {
    padding: 24px 20px;
  }
}


@media (max-width: 1100px) {
  .hero-wrapper,
  .showcase-panel,
  .pricing-panel,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .architecture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-stage {
    min-height: 480px;
  }
  
  .hero-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .hero-section-custom,
  .section {
    width: min(100%, calc(100% - 28px));
  }

  .topbar {
    padding: 18px 18px 20px;
    gap: 16px;
  }

  .topnav {
    gap: 14px;
    font-size: 13px;
  }

  .hero-section-custom {
    padding-top: 32px;
    gap: 28px;
  }

  .dashboard-mockup {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dash-sidebar {
    flex-direction: row;
    height: auto;
    padding: 10px;
    justify-content: space-around;
  }

  .side-icons {
    flex-direction: row;
    gap: 16px;
  }

  .side-logo {
    margin-bottom: 0;
  }

  .dash-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-split {
    grid-template-columns: 1fr;
  }

  .hero-ribbon {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .inbox-mockup-wrapper {
    perspective: none;
    margin-top: 20px;
  }

  .inbox-mockup {
    transform: none;
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .mockup-sidebar {
    height: 180px;
  }
  
  .mockup-chat {
    height: 300px;
  }
}


