:root {
  --ink: #06293a;
  --navy: #0c1b2c;
  --deep: #081421;
  --teal: #007c87;
  --cyan: #12bad6;
  --mint: #29d39c;
  --paper: #f7fbfa;
  --muted: #617987;
  --line: rgba(6, 41, 58, 0.13);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(18, 186, 214, 0.06) 42%, transparent 58%),
    radial-gradient(circle at 80% 10%, rgba(41, 211, 156, 0.08), transparent 24%);
  animation: ambientShift 14s ease-in-out infinite alternate;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(24px, 5.8vw, 92px);
  border-bottom: 1px solid rgba(6, 41, 58, 0.08);
  background: rgba(247, 251, 250, 0.88);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 132px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(6, 41, 58, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(18px, 3vw, 52px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 5.8vw, 92px) clamp(28px, 3.8vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 250, 0.96) 0%, rgba(247, 251, 250, 0.88) 36%, rgba(233, 245, 242, 0.44) 100%),
    radial-gradient(circle at 83% 24%, rgba(18, 186, 214, 0.18), transparent 26%),
    linear-gradient(135deg, #f9fdfc, #dff4ef);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, rgba(6, 41, 58, 0.08), transparent);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.orb-a {
  top: 18%;
  right: 18%;
  background: var(--cyan);
  box-shadow: 0 0 0 20px rgba(18, 186, 214, 0.08);
  animation: pulseDot 3.8s ease-in-out infinite;
}

.orb-b {
  bottom: 18%;
  left: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 28px rgba(41, 211, 156, 0.11);
  animation: pulseDot 4.4s ease-in-out infinite 0.6s;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 124, 135, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg);
  animation: orbitDrift 12s ease-in-out infinite alternate;
}

.orbit-a {
  width: 980px;
  height: 310px;
  top: 8%;
  right: -255px;
}

.orbit-b {
  width: 720px;
  height: 230px;
  bottom: 9%;
  left: -260px;
  border-color: rgba(18, 186, 214, 0.18);
}

.orbit-c {
  width: 520px;
  height: 174px;
  top: 55%;
  right: 12%;
  border-color: rgba(41, 211, 156, 0.18);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2,
h3 {
  margin-bottom: 20px;
}

h1,
h2,
h3,
.quote p {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 22px;
  color: #334f5d;
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--ink));
  box-shadow: 0 18px 44px rgba(0, 124, 135, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary:hover {
  box-shadow: 0 22px 54px rgba(0, 124, 135, 0.32);
}

.button.secondary:hover {
  border-color: rgba(0, 124, 135, 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  max-width: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 60px rgba(6, 41, 58, 0.08);
}

.hero-stats div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  transition: background 180ms ease;
}

.hero-stats div:hover {
  background: rgba(255, 255, 255, 0.96);
}

.hero-stats strong,
.metric-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stats span,
.metric-grid span,
.leadership-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  min-height: min(500px, calc(100vh - 150px));
}

.product-render {
  position: absolute;
  right: clamp(-76px, -4.6vw, -24px);
  top: 50%;
  width: min(720px, 52vw);
  max-width: none;
  filter: drop-shadow(0 42px 70px rgba(6, 41, 58, 0.25));
  transform: translateY(-48%);
  animation: productFloat 6.8s ease-in-out infinite;
}

.section {
  padding: clamp(76px, 9vw, 136px) clamp(24px, 5.8vw, 92px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 186, 214, 0.16), transparent 26%),
    linear-gradient(135deg, var(--deep), var(--navy));
}

.split h2,
.technology h2,
.credibility h2,
.contact-section h2,
.applications h2,
.product-close h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.5vw, 68px);
}

.section-copy p,
.tech-copy p,
.credibility-copy p,
.contact-section p,
.product-close p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--mint);
  font-weight: 900;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.capability-strip div {
  min-height: 168px;
  padding: clamp(24px, 3vw, 42px);
  color: var(--white);
  background: linear-gradient(135deg, #007c87, #0b5260);
}

.capability-strip div:nth-child(even) {
  background: linear-gradient(135deg, #0e586b, #0f3349);
}

.capability-strip span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-strip strong {
  display: block;
  max-width: 260px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.feature-card {
  min-height: 390px;
  padding: clamp(34px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, #007c87, #055d68);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 46%, transparent 58%);
  transform: translateX(-120%);
  animation: cardScan 8s ease-in-out infinite;
}

.feature-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.04);
}

.feature-card:nth-child(2) {
  background: linear-gradient(180deg, #135f73, #0f4d61);
}

.feature-card:nth-child(3) {
  background: linear-gradient(180deg, #17445a, #102f45);
}

.feature-index {
  display: inline-block;
  margin-bottom: 74px;
  color: var(--mint);
  font-weight: 900;
}

.feature-card h3 {
  max-width: 390px;
  font-size: clamp(23px, 2.35vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.applications {
  background: var(--paper);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-bottom: 46px;
}

.section-kicker > p,
.application-grid p {
  color: #526f7c;
  line-height: 1.65;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.application-grid article {
  min-height: 290px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 88% 12%, rgba(18, 186, 214, 0.13), transparent 30%);
  box-shadow: 0 22px 54px rgba(6, 41, 58, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.application-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 124, 135, 0.22);
  box-shadow: 0 30px 70px rgba(6, 41, 58, 0.11);
}

.application-grid span {
  display: block;
  margin-bottom: 76px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.application-grid h3 {
  font-size: clamp(21px, 1.9vw, 29px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.technology {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 8vw, 118px);
  align-items: center;
  background: #e8f6f2;
}

.technology h2,
.credibility h2,
.applications h2,
.product-close h2 {
  color: var(--ink);
}

.technology .tech-copy p,
.credibility-copy p,
.product-close p {
  color: #456370;
}

.linarda-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 46%, rgba(18, 186, 214, 0.16), transparent 32%),
    #2f363b;
  box-shadow: 0 34px 70px rgba(6, 41, 58, 0.16);
}

.linarda-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  mix-blend-mode: screen;
  transform: translateX(-110%);
  animation: mediaSweep 7s ease-in-out infinite;
}

.linarda-media img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
}

.media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 20, 33, 0.72);
  backdrop-filter: blur(14px);
}

.media-caption span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-caption strong {
  color: var(--white);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
}

.proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(41, 211, 156, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--deep));
}

.quote p {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 64px);
}

.quote span {
  color: rgba(255, 255, 255, 0.64);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.metric-grid div {
  min-height: 155px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-grid strong {
  color: var(--white);
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.credibility {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 0.8fr);
  gap: clamp(40px, 9vw, 128px);
  align-items: start;
  background: var(--paper);
}

.leadership-list {
  border-top: 1px solid var(--line);
}

.leadership-list div {
  display: grid;
  gap: 6px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.leadership-list strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product-close {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8f5, #ffffff);
}

.product-close img {
  width: min(760px, 58vw);
  max-width: none;
  justify-self: end;
  filter: drop-shadow(0 38px 70px rgba(6, 41, 58, 0.2));
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.76fr);
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(76px, 9vw, 136px) clamp(24px, 5.8vw, 92px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(18, 186, 214, 0.2), transparent 27%),
    linear-gradient(135deg, #007c87, #06293a);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form:hover {
  border-color: rgba(41, 211, 156, 0.34);
  box-shadow: 0 38px 82px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  color: var(--ink);
  border: 0;
  border-radius: 4px;
  background: var(--white);
  font: inherit;
}

.contact-form button {
  height: 54px;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  padding: 0 clamp(24px, 5.8vw, 92px);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 186, 214, 0.14), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--navy));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(58px, 7vw, 88px) 0 46px;
}

.footer-brand img {
  width: 136px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

@keyframes ambientShift {
  from { transform: translate3d(-1%, -1%, 0) scale(1); opacity: 0.75; }
  to { transform: translate3d(1%, 1%, 0) scale(1.04); opacity: 1; }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes orbitDrift {
  from { transform: rotate(-16deg) translate3d(0, 0, 0); }
  to { transform: rotate(-12deg) translate3d(18px, -8px, 0); }
}

@keyframes productFloat {
  0%, 100% { transform: translateY(-48%) translateX(0); }
  50% { transform: translateY(-51%) translateX(-6px); }
}

@keyframes cardScan {
  0%, 68% { transform: translateX(-120%); }
  86%, 100% { transform: translateX(120%); }
}

@keyframes mediaSweep {
  0%, 60% { transform: translateX(-110%); opacity: 0; }
  72% { opacity: 0.7; }
  88%, 100% { transform: translateX(110%); opacity: 0; }
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.footer-column a:hover {
  color: var(--mint);
}

.footer-contact a {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  }

  .hero-visual {
    min-height: 440px;
  }

  .product-render {
    right: -84px;
    width: min(660px, 56vw);
  }

}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .split,
  .technology,
  .proof,
  .credibility,
  .contact-section,
  .product-close,
  .section-kicker {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .capability-strip,
  .metric-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .product-close img {
    width: 100%;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .product-render {
    right: -72px;
    top: 20px;
    width: min(620px, 112vw);
    transform: none;
    animation: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 112px;
  }

  .nav-cta {
    padding: 11px 13px;
    font-size: 13px;
  }

  .hero {
    padding: 36px 18px 28px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 315px;
  }

  .product-render {
    right: -86px;
    top: 0;
    width: 560px;
  }

  .section,
  .contact-section {
    padding: 58px 18px;
  }

  .capability-strip div,
  .feature-card {
    min-height: 260px;
    padding: 32px 18px;
  }

  .feature-index,
  .application-grid span {
    margin-bottom: 48px;
  }

  .linarda-media {
    min-height: 500px;
  }

  .linarda-media img {
    height: 500px;
  }

  .media-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .footer {
    padding: 0 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 44px 0 34px;
  }

  .footer-bottom {
    display: grid;
    align-items: start;
  }
}
