:root {
  --lc-navy: #071b31;
  --lc-navy-2: #0b2947;
  --lc-blue: #1f7bff;
  --lc-blue-2: #2563eb;
  --lc-cyan: #22d3ee;
  --lc-green: #22c55e;
  --lc-purple: #7c3aed;
  --lc-white: #ffffff;
  --lc-soft: #f5f8fc;
  --lc-text: #102033;
  --lc-muted: #5d6f83;
  --lc-border: #e5edf7;
  --lc-shadow: 0 24px 80px rgba(7, 27, 49, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: var(--lc-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid #e5edf7;
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  color: var(--lc-navy);
}

.logo span {
  color: var(--lc-blue);
}

.main-nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lc-navy);
}

.main-nav a:hover {
  color: var(--lc-blue);
}

/* Buttons */
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--lc-blue), var(--lc-blue-2));
  color: white;
  box-shadow: 0 14px 30px rgba(31, 123, 255, 0.28);
}

.nav-cta:hover,
.btn.primary:hover {
  transform: translateY(-2px);
}

/* Hero */
.linkcraftor-light-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 42px;
  color: var(--lc-navy);
  background:
    radial-gradient(circle at 0% 55%, rgba(34, 211, 238, 0.15), transparent 22%),
    radial-gradient(circle at 92% 30%, rgba(124, 58, 237, 0.12), transparent 28%),
    linear-gradient(120deg, rgba(31, 123, 255, 0.08), transparent 45%),
    #ffffff;
}

.linkcraftor-light-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(31, 123, 255, 0.16) 1px, transparent 1px),
    linear-gradient(120deg, transparent 50%, rgba(34, 211, 238, 0.08));
  background-size: 22px 22px, auto;
  opacity: 0.45;
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
}

.hero-pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--lc-blue);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}

.linkcraftor-light-hero h1 {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -1.8px;
  color: var(--lc-navy);
}

.linkcraftor-light-hero h1 span {
  color: var(--lc-blue);
}

.linkcraftor-light-hero p {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 20px;
  color: #40546b;
}

.hero-actions,
.hero-actions.single-action {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-points {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #40546b;
  font-weight: 700;
}

/* Demo Dashboard */
.light-demo-section {
  background: #ffffff;
  padding: 0 0 90px;
}

.linkcraftor-dashboard-mockup {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #ffffff;
  border: 1px solid var(--lc-border);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(7, 27, 49, 0.13);
  overflow: hidden;
}

.mock-sidebar {
  padding: 26px;
  border-right: 1px solid var(--lc-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-sidebar strong {
  margin-bottom: 12px;
  color: var(--lc-navy);
}

.mock-sidebar span {
  font-size: 13px;
  color: #52677d;
  padding: 8px 10px;
  border-radius: 10px;
}

.mock-sidebar .active {
  background: #eaf3ff;
  color: var(--lc-blue);
  font-weight: 900;
}

.mock-dashboard-main {
  padding: 26px;
}

.mock-dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.mock-metrics,
.mock-dashboard-grid {
  display: grid;
  gap: 16px;
}

.mock-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.mock-dashboard-grid {
  grid-template-columns: 1fr 1.4fr 1fr;
}

.mock-metrics div,
.mock-panel {
  background: #ffffff;
  border: 1px solid var(--lc-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(7, 27, 49, 0.06);
}

.mock-metrics small,
.mock-panel p {
  color: var(--lc-muted);
}

.mock-metrics strong {
  display: block;
  font-size: 26px;
  color: var(--lc-navy);
}

.mock-metrics em {
  color: #16a34a;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
}

.mock-map {
  min-height: 220px;
  display: grid;
  place-items: center;
}

.map-dot {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--lc-blue);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.mock-chart {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 22px auto 0;
  background: conic-gradient(#1f7bff 0 35%, #22d3ee 35% 58%, #f97316 58% 75%, #7c3aed 75% 100%);
}

/* Trusted Logos */
.trusted-marquee {
  background: #ffffff;
  padding: 46px 0 34px;
  overflow: hidden;
}

.trusted-marquee h2 {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: 28px;
  line-height: 1.25;
  color: var(--lc-navy);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: inline-flex;
  gap: 54px;
  align-items: center;
  animation: logoScrollLeft 28s linear infinite;
}

.logo-track span {
  font-size: 20px;
  font-weight: 800;
  color: #7b8794;
  opacity: 0.8;
}

@keyframes logoScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Before / After */
.before-after-premium {
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(124, 58, 237, 0.10), transparent 26%),
    radial-gradient(circle at 92% 22%, rgba(34, 211, 238, 0.12), transparent 28%),
    radial-gradient(circle, rgba(31, 123, 255, 0.10) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 22px 22px;
}

.before-after-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 56px;
}

.before-after-heading span {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--lc-blue);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.before-after-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: var(--lc-navy);
  margin-bottom: 22px;
  letter-spacing: -1.8px;
}

.before-after-heading h2 strong {
  color: var(--lc-blue);
}

.before-after-heading p {
  color: #40546b;
  font-size: 21px;
  line-height: 1.7;
}

.before-after-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.before-after-card-premium {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lc-border);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(7, 27, 49, 0.12);
}

.before-after-card-premium img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 22px;
  border: 1px solid var(--lc-border);
  margin: 18px 0 24px;
}

.before-after-label {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.before-label {
  background: #f3e8ff;
  color: #7c3aed;
}

.after-label {
  background: #dcfce7;
  color: #15803d;
}

.before-after-card-premium h3 {
  color: var(--lc-navy);
  font-size: 23px;
  margin-bottom: 8px;
}

.before-after-card-premium p {
  color: var(--lc-muted);
  line-height: 1.6;
}

/* Core Capabilities */
.core-carousel-section {
  background: #f5f8fc;
  padding: 110px 0;
  overflow: hidden;
}

.core-carousel-section .section-heading,
.advanced-features-section .section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 54px;
}

.core-carousel-section h2,
.advanced-features-section h2 {
  font-size: 44px;
  line-height: 1.15;
  color: var(--lc-navy);
  margin-bottom: 16px;
}

.core-carousel-section .section-heading p,
.advanced-features-section .section-heading p {
  color: var(--lc-muted);
  font-size: 18px;
  line-height: 1.7;
}

.core-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 8px 30px;
}

.core-card {
  flex: 0 0 390px;
  min-height: 340px;
  background: #ffffff;
  border: 1px solid var(--lc-border);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(7, 27, 49, 0.1);
}

.core-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eaf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 26px;
}

.core-card h3 {
  font-size: 25px;
  color: var(--lc-navy);
  margin-bottom: 14px;
}

.core-card p {
  color: var(--lc-muted);
  font-size: 17px;
}

/* Advanced Features */
.advanced-features-section {
  background: #ffffff;
  padding: 110px 0;
}

.advanced-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.advanced-card {
  flex: 0 0 520px;
  background: #f8fbff;
  border: 1px solid var(--lc-border);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(7, 27, 49, 0.1);
}

.advanced-demo-placeholder {
  min-height: 280px;
  border-radius: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--lc-navy), var(--lc-navy-2));
  color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
}

/* Testimonials */
.figma-testimonials {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(135deg, #071b31, #0b2947);
  padding: 110px 0;
  overflow: hidden;
}

.figma-testimonials .container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.testimonials-heading h2 {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 12px;
}

.testimonials-heading p {
  color: #cbd5e1;
  font-size: 18px;
}

.figma-testimonial-row {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 28px;
}

.figma-testimonial-card {
  flex: 0 0 520px;
  min-height: 390px;
  background: rgba(31, 123, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 46px 34px 32px;
  color: white;
  position: relative;
}

.figma-testimonial-card p {
  color: #eef6ff;
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 34px;
}

/* Resources */
.figma-resources {
  background: #ffffff;
  padding: 110px 0;
}

.resources-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.resources-heading h2 {
  font-size: 44px;
  color: var(--lc-navy);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid var(--lc-border);
  border-radius: 28px;
  padding: 18px 18px 28px;
  box-shadow: 0 20px 60px rgba(7, 27, 49, 0.1);
}

.resource-image {
  height: 210px;
  border-radius: 22px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #071b31, #0b2947);
}

.resource-card h3 {
  font-size: 23px;
  color: var(--lc-navy);
  margin: 12px 0 14px;
}

.resource-card p {
  color: var(--lc-muted);
  margin-bottom: 22px;
}

.resource-card a,
.resource-card span {
  color: var(--lc-blue);
  font-weight: 900;
}

/* Footer */
.site-footer {
  background: var(--lc-navy);
  color: white;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 42px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 42px;
  padding-top: 22px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-links a:hover {
  color: var(--lc-cyan);
}

/* Responsive */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .before-after-grid-premium,
  .resource-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .linkcraftor-dashboard-mockup {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-metrics,
  .mock-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .advanced-card,
  .figma-testimonial-card,
  .core-card {
    flex-basis: 86%;
  }

  .resources-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .before-after-card-premium img {
    height: 280px;
  }
}