/* =========================================================
   OMNIFLO — HOMEPAGE
   Ideas • Tools • Real Impact
   ========================================================= */

:root {
  --navy: #0b1220;
  --navy-soft: #111b2d;
  --text: #172033;
  --muted: #617083;

  --cyan: #12b8c4;
  --cyan-light: #e8f8f6;

  --green: #39d98a;
  --green-light: #ecfbf4;

  --blue-light: #eaf0f8;

  --white: #ffffff;
  --off-white: #f7f9fc;
  --line: #e2e8f0;

  --shadow: 0 20px 60px rgba(11, 18, 32, 0.08);

  --radius: 24px;
  --container: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(247, 249, 252, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/* BRAND */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background:
    conic-gradient(
      from 210deg,
      var(--cyan),
      #29d0a1,
      var(--green),
      var(--cyan)
    );

  transform: rotate(-20deg);
}

.brand-mark::before {
  content: "";

  position: absolute;
  inset: 7px;

  background: var(--off-white);
  border-radius: 50%;
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  position: absolute;

  width: 11px;
  height: 7px;

  background: var(--cyan);
  border-radius: 8px;

  z-index: 2;
}

.brand-mark span:nth-child(1) {
  right: -2px;
  top: 8px;
  transform: rotate(35deg);
}

.brand-mark span:nth-child(2) {
  right: 2px;
  bottom: 5px;
  background: var(--green);
  transform: rotate(-25deg);
}

.brand-mark span:nth-child(3) {
  left: 3px;
  bottom: 4px;
  background: #36c8ae;
  transform: rotate(35deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.brand-text small {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.49rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* NAV */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: #536174;

  font-size: 0.9rem;
  font-weight: 600;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 18px;

  background: var(--navy);
  color: white;

  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 18, 32, 0.15);
}


/* MOBILE NAV */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--line);
  background: white;

  border-radius: 12px;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 18px;
  height: 2px;

  margin: 5px auto;

  background: var(--navy);
}

.mobile-nav {
  display: none;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  color: var(--muted);
}

.kicker {
  display: inline-block;

  color: #648095;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.light-kicker {
  color: #9fb1c8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0 22px;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 750;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button span {
  font-size: 1.15rem;
}

.button-primary {
  background: var(--navy);
  color: white;
}

.button-primary:hover,
.button-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

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

.button-dark {
  background: var(--navy);
  color: white;
}

.button-light {
  background: white;
  color: var(--navy);
}

.button-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 22px;

  color: var(--navy);

  font-weight: 800;
  font-size: 0.9rem;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 720px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 35%,
      rgba(18, 184, 196, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(57, 217, 138, 0.1),
      transparent 25%
    ),
    var(--off-white);
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;
  gap: 70px;

  padding-block: 90px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 26px;

  color: #536578;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--cyan),
    var(--green)
  );

  box-shadow: 0 0 0 5px rgba(18, 184, 196, 0.08);
}

.hero h1 {
  max-width: 760px;
}

.hero h1 span {
  display: inline;

  background:
    linear-gradient(
      110deg,
      #079eaf,
      #12b8c4 45%,
      #32c98e
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 650px;

  margin-top: 30px;

  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 25px;

  color: #7a8797;

  font-size: 0.76rem;
}

.hero-note span {
  color: var(--green);
  font-size: 0.65rem;
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card {
  position: relative;
  z-index: 5;

  width: 320px;
  height: 320px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.96),
      rgba(240,248,250,0.9)
    );

  border: 1px solid rgba(255,255,255,0.9);

  box-shadow:
    0 35px 90px rgba(11,18,32,0.13),
    inset 0 0 0 1px rgba(18,184,196,0.08);
}

.flow-symbol {
  position: relative;

  width: 125px;
  height: 125px;

  margin-bottom: 22px;
}

.flow-ring {
  position: absolute;
  inset: 12px;

  border: 17px solid transparent;

  border-left-color: var(--cyan);
  border-top-color: #31c9a1;

  border-radius: 50%;

  transform: rotate(-35deg);
}

.flow-cut {
  position: absolute;

  width: 60px;
  height: 35px;

  top: 38px;
  right: -5px;

  background: white;

  transform: rotate(-35deg);
}

.flow-arrow {
  position: absolute;

  right: 1px;
  bottom: 14px;

  width: 31px;
  height: 31px;

  background: var(--green);

  clip-path: polygon(
    0 0,
    100% 50%,
    0 100%,
    22% 50%
  );

  transform: rotate(-12deg);
}

.flow-word {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-word strong {
  color: var(--navy);

  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.flow-word span {
  margin-top: 5px;

  color: #718096;

  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* ORBITS */

.orbit {
  position: absolute;

  border: 1px solid rgba(18,184,196,0.13);

  border-radius: 50%;
}

.orbit-one {
  width: 450px;
  height: 450px;
}

.orbit-two {
  width: 590px;
  height: 590px;

  border-color: rgba(57,217,138,0.1);
}

.orbit-three {
  width: 730px;
  height: 730px;

  border-color: rgba(11,18,32,0.045);
}


/* FLOATING CARDS */

.floating-card {
  position: absolute;
  z-index: 8;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 17px;

  background: rgba(255,255,255,0.92);

  border: 1px solid rgba(226,232,240,0.9);

  border-radius: 15px;

  box-shadow: 0 18px 45px rgba(11,18,32,0.1);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.76rem;
}

.floating-card small {
  color: #8491a1;
  font-size: 0.66rem;
}

.mini-icon {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: var(--cyan-light);

  color: var(--cyan);
  font-weight: 900;
}

.floating-card-top {
  top: 65px;
  right: 5px;
}

.floating-card-bottom {
  bottom: 65px;
  left: 0;
}

.floating-card-bottom .mini-icon {
  background: var(--green-light);
  color: #18a86d;
}


/* GLOWS */

.hero-glow {
  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  filter: blur(70px);

  pointer-events: none;
}

.hero-glow-one {
  top: -160px;
  right: 10%;

  background: rgba(18,184,196,0.08);
}

.hero-glow-two {
  bottom: -180px;
  left: 20%;

  background: rgba(57,217,138,0.07);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
  background: var(--navy);
  color: white;
}

.trust-inner {
  min-height: 70px;

  display: flex;
  align-items: center;
  gap: 24px;

  overflow: hidden;

  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-inner > span:not(:first-child) {
  color: #b7c3d3;
}

.trust-line {
  width: 55px;
  height: 1px;

  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--green)
  );
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding-block: 120px;
}

.section-white {
  background: white;
}

.section-soft {
  background: var(--blue-light);
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 90px;
}

.section-label {
  color: #8593a5;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label span {
  display: block;

  margin-bottom: 15px;

  color: var(--cyan);

  font-size: 1.3rem;
}

.intro-content {
  max-width: 780px;
}

.intro-content h2 {
  margin-bottom: 35px;
}

.intro-content h2 em {
  display: block;

  color: #788697;

  font-style: normal;
  font-weight: 450;
}

.intro-content p {
  max-width: 690px;

  margin-top: 18px;

  font-size: 1.03rem;
}

.strong-line {
  margin-top: 32px !important;

  color: var(--navy) !important;

  font-weight: 800;
}


/* =========================================================
   ROOMS
   ========================================================= */

.rooms-section {
  background: var(--off-white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;

  align-items: end;
  gap: 70px;

  margin-bottom: 55px;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading h2 span {
  display: block;
  color: #7b899a;
  font-weight: 450;
}

.section-heading > p {
  max-width: 380px;
}

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

.room-card {
  position: relative;

  min-height: 330px;

  display: flex;
  flex-direction: column;

  padding: 34px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: white;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.room-card::after {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  right: -70px;
  bottom: -75px;

  border-radius: 50%;

  background: rgba(18,184,196,0.06);
}

.room-card:hover {
  transform: translateY(-6px);

  border-color: rgba(18,184,196,0.22);

  box-shadow: var(--shadow);
}

.room-number {
  color: #a2adba;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.room-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  margin-top: 30px;

  border-radius: 16px;

  background: var(--cyan-light);

  color: var(--cyan);

  font-size: 1.45rem;
  font-weight: 900;
}

.room-content {
  position: relative;
  z-index: 2;

  margin-top: auto;
  padding-top: 35px;
}

.room-content h3 {
  margin-bottom: 10px;
}

.room-content p {
  max-width: 480px;

  font-size: 0.92rem;
}

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 22px;

  color: var(--navy);

  font-size: 0.78rem;
  font-weight: 800;
}

.room-link b {
  transition: transform 0.2s ease;
}

.room-card:hover .room-link b {
  transform: translateX(5px);
}

.room-solutions .room-icon {
  background: #edf1fa;
  color: #4e6b9c;
}

.room-products .room-icon {
  background: #f5f1e8;
  color: #a77929;
}

.room-resources .room-icon {
  background: var(--green-light);
  color: #20a66d;
}


/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 100px;
}

.feature-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-copy {
  max-width: 550px;
}

.feature-copy h2 {
  margin-top: 14px;
}

.feature-copy h2 span {
  display: block;
  color: #748396;
  font-weight: 450;
}

.feature-copy > p {
  margin-top: 22px;

  font-size: 1rem;
}

.feature-panel {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  border-radius: 30px;

  border: 1px solid rgba(226,232,240,0.9);

  background: white;

  box-shadow: var(--shadow);
}


/* LEARNING PANEL */

.learning-panel {
  padding: 28px;
}

.panel-top {
  display: flex;
  justify-content: space-between;

  color: #9aa6b4;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.learning-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-top: 75px;
}

.learning-item {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 16px;

  padding: 20px;

  border: 1px solid var(--line);
  border-radius: 17px;

  background: #fbfcfd;
}

.learning-item.active {
  background: var(--cyan-light);
  border-color: rgba(18,184,196,0.18);
}

.learning-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #b8c4d0;
}

.learning-item.active .learning-dot {
  background: var(--cyan);
}

.learning-item strong,
.learning-item small {
  display: block;
}

.learning-item strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.learning-item small {
  margin-top: 3px;
  color: #8996a5;
  font-size: 0.7rem;
}

.learning-item b {
  color: #8996a5;
}


/* SOLUTIONS PANEL */

.solution-panel {
  min-height: 470px;

  background:
    radial-gradient(
      circle,
      rgba(18,184,196,0.11),
      transparent 55%
    ),
    white;
}

.solution-orbit {
  position: absolute;

  width: 310px;
  height: 310px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  border: 1px dashed rgba(18,184,196,0.27);

  border-radius: 50%;
}

.solution-orbit::before {
  content: "";

  position: absolute;
  inset: 48px;

  border: 1px solid rgba(57,217,138,0.22);

  border-radius: 50%;
}

.solution-center {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 180px;
  height: 180px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  border-radius: 50%;

  background: var(--navy);
  color: white;

  box-shadow: 0 25px 60px rgba(11,18,32,0.18);

  text-align: center;
}

.solution-center span {
  color: #9eacc0;

  font-size: 0.58rem;
  font-weight: 800;

  letter-spacing: 0.15em;
}

.solution-center strong {
  color: var(--green);
  font-size: 1.5rem;
}

.solution-tag {
  position: absolute;

  padding: 9px 14px;

  background: white;

  border: 1px solid var(--line);

  border-radius: 999px;

  color: #5d6b7c;

  font-size: 0.67rem;
  font-weight: 800;

  box-shadow: 0 8px 22px rgba(11,18,32,0.06);
}

.tag-one {
  top: 70px;
  left: 70px;
}

.tag-two {
  top: 85px;
  right: 55px;
}

.tag-three {
  bottom: 75px;
  left: 70px;
}

.tag-four {
  right: 40px;
  bottom: 80px;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products-section {
  background: white;
}

.section-heading.centered {
  display: block;

  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}

.section-heading.centered h2 {
  margin-top: 13px;
}

.section-heading.centered h2 span {
  display: inline;
}

.section-heading.centered > p {
  max-width: 650px;

  margin: 22px auto 0;
}

.product-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;

  gap: 70px;

  margin-top: 70px;

  padding: 55px;

  background: var(--off-white);

  border: 1px solid var(--line);
  border-radius: 30px;
}

.product-badge {
  display: inline-block;

  padding: 7px 11px;

  border-radius: 999px;

  background: var(--navy);
  color: white;

  font-size: 0.58rem;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.product-info h3 {
  margin-top: 22px;

  font-size: clamp(2rem, 4vw, 3rem);
}

.product-info p {
  margin-top: 18px;

  font-size: 0.95rem;
}

.product-info .button {
  margin-top: 28px;
}


/* BROWSER */

.product-visual {
  min-width: 0;
}

.browser-window {
  overflow: hidden;

  border: 1px solid #dce3eb;

  border-radius: 19px;

  background: white;

  box-shadow: 0 25px 60px rgba(11,18,32,0.09);
}

.browser-bar {
  height: 35px;

  display: flex;
  align-items: center;
  gap: 6px;

  padding-left: 14px;

  background: #f0f3f7;

  border-bottom: 1px solid #e1e6ec;
}

.browser-bar span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #c3ccd7;
}

.browser-content {
  padding: 30px;
}

.dashboard-title small {
  display: block;

  color: var(--cyan);

  font-size: 0.58rem;
  font-weight: 900;

  letter-spacing: 0.15em;
}

.dashboard-title strong {
  display: block;

  margin-top: 7px;

  color: var(--navy);

  font-size: 1.35rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;

  gap: 12px;

  margin-top: 28px;
}

.dashboard-card {
  min-height: 105px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 17px;

  background: #f7f9fc;

  border: 1px solid #e6ebf0;

  border-radius: 14px;
}

.dashboard-card.large {
  grid-row: span 2;

  min-height: 222px;

  background:
    linear-gradient(
      145deg,
      var(--navy),
      #18263b
    );
}

.dashboard-card small {
  color: #8794a4;
  font-size: 0.65rem;
}

.dashboard-card strong {
  margin-top: 5px;

  color: var(--navy);

  font-size: 0.86rem;
}

.dashboard-card.large small {
  color: #9eacc0;
}

.dashboard-card.large strong {
  color: white;
  font-size: 1.5rem;
}

.dashboard-card.large span {
  margin-top: 25px;

  color: var(--green);

  font-size: 1.3rem;
}

.future-products {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 25px;

  padding: 22px 4px;

  border-bottom: 1px solid var(--line);
}

.future-products span {
  color: #8b98a8;

  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.future-products p {
  font-size: 0.82rem;
}


/* =========================================================
   RESOURCES
   ========================================================= */

.resources-section {
  background: var(--blue-light);
}

.resource-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;

  gap: 110px;

  align-items: center;
}

.resource-grid h2 {
  margin-top: 14px;
}

.resource-grid h2 span {
  display: block;
  color: #748396;
  font-weight: 450;
}

.resource-big-copy {
  max-width: 620px;

  color: #4e5e70;

  font-size: 1.08rem;
  line-height: 1.8;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr;

  gap: 100px;
}

.about-mark {
  align-self: start;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-symbol {
  position: relative;

  width: 115px;
  height: 115px;

  margin-bottom: 25px;

  border-radius: 50%;

  background:
    conic-gradient(
      from 210deg,
      var(--cyan),
      #2bcaa3,
      var(--green),
      var(--cyan)
    );
}

.about-symbol::before {
  content: "";

  position: absolute;
  inset: 21px;

  background: var(--navy);
  border-radius: 50%;
}

.about-symbol span {
  position: absolute;

  z-index: 2;

  width: 32px;
  height: 10px;

  border-radius: 10px;

  background: var(--cyan);
}

.about-symbol span:nth-child(1) {
  top: 27px;
  right: 9px;
  transform: rotate(30deg);
}

.about-symbol span:nth-child(2) {
  right: 10px;
  bottom: 24px;
  background: var(--green);
  transform: rotate(-30deg);
}

.about-symbol span:nth-child(3) {
  left: 17px;
  bottom: 19px;
  background: #36c8ae;
  transform: rotate(35deg);
}

.about-mark > div:last-child {
  display: flex;
  flex-direction: column;
}

.about-mark strong {
  color: white;

  font-size: 1.7rem;

  letter-spacing: -0.05em;
}

.about-mark small {
  margin-top: 5px;

  color: #8190a3;

  font-size: 0.52rem;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 780px;
}

.about-copy h2 {
  margin-top: 15px;

  color: white;
}

.about-copy h2 span {
  display: block;

  color: #7f91a7;

  font-weight: 450;
}

.about-copy > p {
  margin-top: 22px;

  color: #aab7c7;

  font-size: 1rem;
}

.about-closing {
  margin-top: 40px !important;

  color: #d1dbe6 !important;
}

.about-closing strong {
  color: white;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(18,184,196,0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(57,217,138,0.13),
      transparent 28%
    ),
    #101b2d;

  color: white;
}

.final-inner {
  position: relative;
  z-index: 2;

  max-width: 850px;

  padding-block: 130px;

  text-align: center;
}

.final-inner h2 {
  margin-top: 15px;

  color: white;
}

.final-inner h2 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      var(--cyan),
      var(--green)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-inner p {
  max-width: 620px;

  margin: 25px auto 0;

  color: #aab8ca;
}

.final-inner .button {
  margin-top: 32px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #080e18;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 0.5fr;

  gap: 80px;

  padding-block: 70px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand-link {
  margin-bottom: 22px;
}

.footer-brand p {
  color: #8391a4;

  font-size: 0.85rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h4 {
  margin-bottom: 8px;

  color: white;

  font-size: 0.72rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: #8290a3;

  font-size: 0.8rem;

  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding-block: 22px;

  border-top: 1px solid rgba(255,255,255,0.08);

  color: #657386;

  font-size: 0.68rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

  .desktop-nav {
    gap: 18px;
  }

  .hero-grid,
  .feature-grid,
  .feature-grid.reverse,
  .product-feature,
  .resource-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-grid.reverse .feature-panel {
    order: 2;
  }

  .product-feature {
    gap: 45px;
  }

  .resource-grid {
    gap: 40px;
  }

  .about-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


@media (max-width: 760px) {

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;

    padding: 10px 16px 20px;

    background: rgba(247,249,252,0.97);

    border-top: 1px solid var(--line);
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav a {
    padding: 14px 0;

    border-bottom: 1px solid var(--line);

    color: var(--navy);

    font-size: 0.9rem;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 75px 60px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .flow-card {
    width: 245px;
    height: 245px;
  }

  .flow-symbol {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
  }

  .flow-ring {
    border-width: 13px;
  }

  .flow-word strong {
    font-size: 1.3rem;
  }

  .orbit-one {
    width: 320px;
    height: 320px;
  }

  .orbit-two {
    width: 420px;
    height: 420px;
  }

  .orbit-three {
    width: 510px;
    height: 510px;
  }

  .floating-card {
    padding: 10px 12px;
  }

  .floating-card-top {
    top: 15px;
    right: 0;
  }

  .floating-card-bottom {
    bottom: 15px;
    left: 0;
  }

  .section {
    padding-block: 85px;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    min-height: 290px;
  }

  .feature-grid {
    gap: 50px;
  }

  .feature-panel {
    min-height: 360px;
  }

  .solution-panel {
    min-height: 390px;
  }

  .solution-orbit {
    width: 260px;
    height: 260px;
  }

  .solution-center {
    width: 145px;
    height: 145px;
  }

  .solution-tag {
    padding: 7px 10px;
  }

  .tag-one {
    top: 50px;
    left: 30px;
  }

  .tag-two {
    top: 65px;
    right: 25px;
  }

  .tag-three {
    bottom: 50px;
    left: 30px;
  }

  .tag-four {
    right: 20px;
    bottom: 55px;
  }

  .product-feature {
    padding: 28px;
  }

  .browser-content {
    padding: 20px;
  }

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

  .dashboard-card.large {
    grid-row: auto;
    min-height: 150px;
  }

  .future-products {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


@media (max-width: 480px) {

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    text-align: left;
  }

  .trust-inner {
    gap: 14px;

    font-size: 0.62rem;
  }

  .trust-inner span:nth-last-child(-n+2) {
    display: none;
  }

  .room-card {
    padding: 27px;
  }

  .learning-panel {
    padding: 20px;
  }

  .learning-stack {
    margin-top: 45px;
  }

  .learning-item {
    padding: 15px;
  }

  .product-feature {
    padding: 22px;
    border-radius: 22px;
  }

  .product-info h3 {
    font-size: 2.2rem;
  }

  .browser-window {
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .final-inner {
    padding-block: 100px;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
  }
