/* =========================================================
   NOVARIYAN
   GLOBAL DESIGN SYSTEM
   ========================================================= */

:root {
  --ink: #071126;
  --ink-soft: #33415c;
  --muted: #68758d;

  --blue: #1769ff;
  --blue-dark: #0c43c7;
  --blue-light: #eaf2ff;

  --line: #dce4ef;
  --line-dark: #c7d3e3;

  --bg: #ffffff;
  --soft: #f5f8fc;
  --soft-blue: #f1f6ff;

  --white: #ffffff;
  --black: #030814;

  --max: 1180px;
  --radius: 18px;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--bg);
  color: var(--ink);

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

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

::selection {
  background: #cfe0ff;
  color: var(--ink);
}

/* =========================================================
   CONTAINERS
   ========================================================= */

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

  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

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

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

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

  border-bottom:
    1px solid rgba(220, 228, 239, 0.9);

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

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

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

/* =========================================================
   ORIGINAL NOVARIYAN LOGO
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;

  text-decoration: none;

  flex-shrink: 0;

  line-height: 0;
}

.novariyan-logo {
  width: 205px;
  height: auto;

  max-height: 62px;

  object-fit: contain;
  object-position: left center;
}

/*
   IMPORTANT:
   No fake CSS N logo is used.
   Your original logo image is loaded from:

   /image/novariyan-logo.png
*/

/* =========================================================
   DESKTOP NAV
   ========================================================= */

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.nav-link {
  position: relative;

  padding: 8px 0;

  text-decoration: none;

  color: #52617a;

  font-size: 14px;
  font-weight: 500;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link.active {
  color: var(--blue);
}

.nav-link.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 2px;

  border-radius: 10px;

  background: var(--blue);
}

/* =========================================================
   NAV CTA
   ========================================================= */

.nav-cta {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 12px 17px;

  border:
    1px solid #cfd9e8;

  border-radius: 10px;

  text-decoration: none;

  background: #fff;

  color: var(--ink);

  font-size: 13px;
  font-weight: 700;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta span {
  color: var(--blue);
}

.nav-cta:hover {
  transform: translateY(-1px);

  border-color: #a9bee0;

  box-shadow:
    0 10px 25px rgba(7, 17, 38, 0.08);
}

/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.menu-btn {
  display: none;

  width: 42px;
  height: 42px;

  padding: 9px;

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

  border-radius: 10px;

  background: #fff;

  cursor: pointer;
}

.menu-btn span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: var(--ink);

  border-radius: 5px;
}

/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav {
  padding: 15px 24px 24px;

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

  background: #fff;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav .nav-link {
  display: block;

  padding: 13px 0;

  border-bottom:
    1px solid #edf1f6;
}

.mobile-cta {
  display: block;

  margin-top: 15px;

  padding: 14px 16px;

  border-radius: 10px;

  text-decoration: none;

  text-align: center;

  color: #fff;

  background: var(--blue);

  font-weight: 700;
}

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

.hero {
  position: relative;

  overflow: hidden;

  min-height: 760px;

  padding:
    110px 0
    100px;
}

.hero-background {
  position: absolute;
  inset: 0;

  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.48;

  background-image:
    linear-gradient(
      rgba(28, 79, 154, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(28, 79, 154, 0.055) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      rgba(0, 0, 0, .7) 55%,
      transparent 100%
    );
}

.hero-orb {
  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0.15;
}

.orb-a {
  top: -260px;
  right: -120px;

  background: #1d6eff;
}

.orb-b {
  bottom: -300px;
  left: -200px;

  background: #4b8fff;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy-wrap {
  max-width: 920px;
}

.kicker {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  color: #4c6c9e;

  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.kicker > span {
  width: 28px;
  height: 1px;

  background: var(--blue);
}

.hero h1 {
  max-width: 1000px;

  margin: 0;

  font-size:
    clamp(
      52px,
      7vw,
      88px
    );

  line-height: .99;

  letter-spacing: -.055em;

  font-weight: 800;
}

.hero h1 em {
  color: var(--blue);

  font-style: normal;
}

.hero-copy {
  max-width: 720px;

  margin:
    30px 0
    0;

  color: #596a84;

  font-size: 19px;
  line-height: 1.7;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 48px;

  padding:
    0 20px;

  border:
    1px solid #ced9e8;

  border-radius: 10px;

  background: #fff;

  color: var(--ink);

  text-decoration: none;

  font-size: 13px;
  font-weight: 750;

  cursor: pointer;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

  border-color: #aec0db;

  box-shadow:
    0 12px 30px rgba(7, 17, 38, 0.09);
}

.btn.primary {
  border-color: var(--blue);

  background:
    linear-gradient(
      135deg,
      #1769ff,
      #0754e8
    );

  color: #fff;

  box-shadow:
    0 12px 28px rgba(23, 105, 255, 0.22);
}

.btn.primary:hover {
  box-shadow:
    0 16px 34px rgba(23, 105, 255, 0.28);
}

.btn.light-btn {
  border-color:
    rgba(255,255,255,.25);

  background: #fff;

  color: var(--ink);
}

/* =========================================================
   AI NETWORK
   ========================================================= */

.ai-network {
  position: relative;

  width: 100%;
  height: 510px;

  margin-top: 72px;

  overflow: hidden;

  border:
    1px solid #d7e1ee;

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(35, 111, 255, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      #f8fbff
    );

  box-shadow:
    0 30px 80px rgba(25, 63, 120, 0.10);
}

/* =========================================================
   NETWORK GRID
   ========================================================= */

.network-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(23, 105, 255, 0.075) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(23, 105, 255, 0.075) 1px,
      transparent 1px
    );

  background-size: 38px 38px;

  mask-image:
    radial-gradient(
      circle at center,
      black 20%,
      transparent 95%
    );
}

.network-glow {
  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  filter: blur(80px);

  opacity: .13;
}

.glow-one {
  left: 10%;
  top: 10%;

  background: #1a6dff;
}

.glow-two {
  right: 10%;
  bottom: 5%;

  background: #4b8fff;
}

/* =========================================================
   NETWORK LABELS
   ========================================================= */

.network-label {
  position: absolute;

  z-index: 10;

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .18em;

  color: #6c7f9d;

  white-space: nowrap;
}

.label-top {
  top: 22px;
  left: 24px;
}

.label-top-right {
  top: 22px;
  right: 24px;
}

.label-bottom-left {
  bottom: 22px;
  left: 24px;
}

.label-bottom {
  bottom: 22px;
  right: 24px;
}

/* =========================================================
   CONNECTIONS
   ========================================================= */

.connection {
  position: absolute;

  z-index: 2;

  height: 1px;

  transform-origin: left center;

  background:
    linear-gradient(
      90deg,
      rgba(23,105,255,0),
      rgba(23,105,255,.55),
      rgba(23,105,255,0)
    );

  animation:
    connectionPulse 4s ease-in-out infinite;
}

.connection-1 {
  width: 270px;

  left: 20%;
  top: 35%;

  transform: rotate(16deg);
}

.connection-2 {
  width: 250px;

  left: 20%;
  top: 65%;

  transform: rotate(-17deg);
}

.connection-3 {
  width: 250px;

  right: 19%;
  top: 35%;

  transform: rotate(164deg);
}

.connection-4 {
  width: 250px;

  right: 19%;
  top: 65%;

  transform: rotate(196deg);
}

.connection-5 {
  width: 310px;

  left: 34%;
  top: 50%;

  transform: rotate(0deg);
}

.connection-6 {
  width: 180px;

  left: 43%;
  top: 29%;

  transform: rotate(90deg);
}

@keyframes connectionPulse {

  0%,
  100% {
    opacity: .45;
  }

  50% {
    opacity: 1;
  }

}

/* =========================================================
   AI NODES
   ========================================================= */

.ai-node {
  position: absolute;

  z-index: 8;

  width: 150px;

  padding: 17px 18px;

  border:
    1px solid #d5dfed;

  border-radius: 14px;

  background:
    rgba(255,255,255,.94);

  box-shadow:
    0 16px 35px rgba(25, 62, 117, 0.08);

  backdrop-filter: blur(12px);

  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.ai-node:hover {
  transform: translateY(-5px);

  border-color: #9ebbe8;

  box-shadow:
    0 22px 42px rgba(25, 62, 117, 0.13);
}

.ai-node .node-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  margin-bottom: 11px;

  border-radius: 8px;

  background: #edf4ff;

  color: var(--blue);

  font-size: 14px;
}

.ai-node strong {
  display: block;

  color: #152a50;

  font-size: 11px;

  letter-spacing: .13em;
}

.ai-node small {
  display: block;

  margin-top: 5px;

  color: #7a8ba5;

  font-size: 10px;
}

.node-context {
  left: 7%;
  top: 26%;
}

.node-data {
  right: 7%;
  top: 26%;
}

.node-products {
  left: 7%;
  bottom: 18%;
}

.node-people {
  right: 7%;
  bottom: 18%;
}

/* =========================================================
   AI CORE
   ========================================================= */

.ai-core {
  position: absolute;

  z-index: 20;

  left: 50%;
  top: 50%;

  width: 170px;
  height: 170px;

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

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

  border:
    1px solid #c9d8ec;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 50% 42%,
      #ffffff 0%,
      #f5f9ff 65%,
      #edf4ff 100%
    );

  box-shadow:
    0 0 0 14px rgba(23,105,255,.025),
    0 25px 60px rgba(20, 70, 145, .13);
}

.core-ring {
  position: absolute;

  border-radius: 50%;

  border:
    1px solid rgba(23,105,255,.18);

  pointer-events: none;
}

.ring-one {
  inset: -18px;

  animation:
    rotateRing 12s linear infinite;
}

.ring-two {
  inset: -34px;

  border-style: dashed;

  opacity: .6;

  animation:
    rotateRing 18s linear infinite reverse;
}

@keyframes rotateRing {

  to {
    transform: rotate(360deg);
  }

}

.core-orb {
  position: relative;

  width: 52px;
  height: 52px;

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

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #74aaff,
      #1769ff 48%,
      #0b42b8 100%
    );

  box-shadow:
    0 10px 28px rgba(23,105,255,.35);
}

.orb-inner {
  width: 17px;
  height: 17px;

  border:
    3px solid #fff;

  border-radius: 50%;

  box-shadow:
    0 0 20px rgba(255,255,255,.8);
}

.ai-core strong {
  margin-top: 15px;

  font-size: 11px;

  letter-spacing: .18em;
}

.ai-core > span {
  margin-top: 4px;

  color: #647795;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: .18em;
}

/* =========================================================
   SIGNALS
   ========================================================= */

.signal {
  position: absolute;

  z-index: 15;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 7px 10px;

  border:
    1px solid #dce5f1;

  border-radius: 100px;

  background:
    rgba(255,255,255,.85);

  color: #71809a;

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 8px;

  letter-spacing: .12em;
}

.signal span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #21c982;

  box-shadow:
    0 0 10px rgba(33,201,130,.7);
}

.signal-one {
  left: 32%;
  top: 17%;
}

.signal-two {
  right: 31%;
  top: 17%;
}

.signal-three {
  left: 46%;
  bottom: 12%;
}

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

.section {
  padding: 110px 0;
}

.section.soft {
  background:
    linear-gradient(
      180deg,
      #f7f9fc,
      #f2f6fb
    );
}

.section.dark {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(23,105,255,.18),
      transparent 30%
    ),
    #071126;

  color: #fff;
}

.section-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(280px, .7fr);

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}

.section-head h2,
.two-col h2 {
  margin: 0;

  font-size:
    clamp(
      38px,
      5vw,
      62px
    );

  line-height: 1.02;

  letter-spacing: -.045em;
}

.section-head h2 em {
  color: var(--blue);

  font-style: normal;
}

.section-head > p {
  margin: 0;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

/* =========================================================
   CARDS
   ========================================================= */

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;

  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 28px;

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

  border-radius: var(--radius);

  background: #fff;

  text-decoration: none;

  overflow: hidden;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      #78a8ff
    );

  transform:
    scaleX(0);

  transform-origin: left;

  transition:
    transform 250ms ease;
}

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

  border-color: #b8cbe5;

  box-shadow:
    0 24px 55px rgba(22, 57, 110, 0.10);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  color: #71809a;

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;

  padding: 6px 8px;

  border-radius: 100px;

  background: #eef4fc;

  color: #52709e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .08em;
}

.mark {
  width: 54px;
  height: 54px;

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

  margin:
    65px 0
    24px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #eaf2ff,
      #f7faff
    );

  color: var(--blue);

  font-size: 22px;
  font-weight: 800;
}

.product-card h3 {
  margin:
    0 0
    12px;

  font-size: 26px;

  letter-spacing: -.03em;
}

.product-card p {
  margin: 0;

  color: var(--muted);

  line-height: 1.7;

  font-size: 14px;
}

.card-meta {
  display: flex;
  justify-content: space-between;

  margin-top: auto;
  padding-top: 30px;

  color: #65758f;

  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
   TWO COLUMN
   ========================================================= */

.two-col {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 90px;

  align-items: start;
}

.two-col p {
  color: var(--muted);

  line-height: 1.8;
}

.two-col .large {
  margin-top: 0;

  color: var(--ink);

  font-size: 22px;
  line-height: 1.55;
}

.text-link {
  display: inline-block;

  margin-top: 18px;

  color: var(--blue);

  text-decoration: none;

  font-weight: 750;
}

/* =========================================================
   FEATURE GRID
   ========================================================= */

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.feature-grid.four {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.feature-grid article {
  padding: 32px;

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

  border-radius: 16px;

  background: #fff;
}

.feature-index {
  color: var(--blue);

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .15em;
}

.feature-grid h3 {
  margin:
    30px 0
    12px;

  font-size: 25px;

  letter-spacing: -.025em;
}

.feature-grid p {
  margin:
    0 0
    22px;

  color: var(--muted);

  line-height: 1.7;
}

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

.cta {
  text-align: center;

  max-width: 800px;

  margin-inline: auto;
}

.cta .kicker {
  justify-content: center;

  color: #9bb8e8;
}

.cta h2 {
  margin: 0;

  font-size:
    clamp(
      42px,
      6vw,
      72px
    );

  line-height: 1;

  letter-spacing: -.05em;
}

.cta p {
  margin:
    22px auto
    30px;

  color: #aebbd0;

  font-size: 17px;
}

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

.page-hero {
  padding:
    110px 0
    90px;

  background:
    linear-gradient(
      180deg,
      #f7faff,
      #fff
    );

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

.page-hero h1 {
  margin: 0;

  font-size:
    clamp(
      48px,
      7vw,
      78px
    );

  line-height: 1;

  letter-spacing: -.055em;
}

.page-hero p {
  max-width: 720px;

  margin:
    26px 0
    0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.75;
}

/* =========================================================
   STATUS
   ========================================================= */

.status-banner {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 30px;
  padding: 16px 18px;

  border:
    1px solid #dce5f1;

  border-radius: 12px;

  background: #f8fbff;

  color: #62738e;

  font-size: 13px;
}

.status-banner b {
  color: var(--ink);

  font-size: 11px;

  letter-spacing: .08em;
}

.pulse {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #20bd79;

  box-shadow:
    0 0 0 5px rgba(32,189,121,.12);
}

/* =========================================================
   WORKFORCE
   ========================================================= */

.role-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 15px;
}

.role-grid article {
  padding: 25px;

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

  border-radius: 14px;

  background: #fff;
}

.role-grid article > span {
  color: var(--blue);

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 10px;
}

.role-grid h3 {
  margin:
    28px 0
    10px;

  font-size: 18px;
}

.role-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   ARCHITECTURE
   ========================================================= */

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

.arch-row {
  display: grid;

  grid-template-columns:
    70px
    1fr;

  gap: 30px;

  padding: 35px 0;

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

.arch-row > span {
  color: var(--blue);

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-weight: 800;
}

.arch-row h3 {
  margin:
    0 0
    10px;

  font-size: 28px;
}

.arch-row p {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}

/* =========================================================
   PRINCIPLES
   ========================================================= */

.principles {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 15px;
}

.principles article {
  padding: 28px;

  border-top:
    2px solid var(--blue);
}

.principles article > span {
  color: var(--blue);

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 11px;
}

.principles h3 {
  margin:
    25px 0
    10px;

  font-size: 22px;
}

.principles p {
  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns:
    minmax(0, .8fr)
    minmax(0, 1.2fr);

  gap: 90px;
}

.contact-grid h2 {
  margin: 0;

  font-size:
    clamp(
      38px,
      5vw,
      58px
    );

  line-height: 1;
  letter-spacing: -.045em;
}

.email-large {
  display: inline-block;

  margin:
    25px 0
    10px;

  color: var(--ink);

  font-size:
    clamp(
      22px,
      3vw,
      40px
    );

  font-weight: 750;

  letter-spacing: -.035em;

  text-decoration: none;
}

.contact-grid > div > p {
  color: var(--muted);

  line-height: 1.7;
}

.contact-form {
  display: grid;

  gap: 18px;

  padding: 32px;

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

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 25px 70px rgba(20, 50, 100, .06);
}

.contact-form label {
  display: grid;

  gap: 8px;

  color: #34445e;

  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding:
    13px 14px;

  border:
    1px solid #d5deeb;

  border-radius: 9px;

  outline: none;

  background: #fbfdff;

  color: var(--ink);

  resize: vertical;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #78a5ed;

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(23,105,255,.08);
}

.honeypot {
  display: none !important;
}

#form-status {
  min-height: 22px;

  font-size: 13px;
}

#form-status.success {
  color: #168357;
}

#form-status.error {
  color: #c43c3c;
}

/* =========================================================
   LEGAL
   ========================================================= */

.legal-copy {
  max-width: 800px;
}

.legal-copy p {
  margin:
    0 0
    25px;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.85;
}

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

.footer {
  padding:
    70px 0
    25px;

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

  background: #f7f9fc;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr
    1fr
    1.3fr;

  gap: 70px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .novariyan-logo {
  width: 190px;
  max-height: 58px;
}

.footer-grid > div > p {
  max-width: 360px;

  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}

.footer-title {
  margin-bottom: 17px;

  color: var(--ink);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .13em;

  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;

  margin:
    0 0
    12px;

  color: #60708a;

  text-decoration: none;

  font-size: 13px;
}

.footer-grid a:not(.brand):hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 55px;
  padding-top: 20px;

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

  color: #8793a6;

  font-size: 11px;
}

.footer-bottom a {
  color: inherit;

  text-decoration: none;
}

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

.dot {
  margin:
    0 8px;
}

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

@media (max-width: 1000px) {

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

  .menu-btn {
    display: block;
  }

  .cards.three,
  .role-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .feature-grid.four,
  .principles {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

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

}

/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 720px) {

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

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

  .novariyan-logo {
    width: 170px;
    max-height: 52px;
  }

  .hero {
    min-height: auto;

    padding:
      75px 0
      70px;
  }

  .hero h1 {
    font-size:
      clamp(
        44px,
        13vw,
        68px
      );
  }

  .hero-copy {
    font-size: 17px;
  }

  /* AI NETWORK */

  .ai-network {
    height: 450px;

    margin-top: 55px;

    border-radius: 16px;
  }

  .ai-node {
    width: 115px;

    padding: 12px;
  }

  .ai-node .node-icon {
    width: 25px;
    height: 25px;
  }

  .ai-node strong {
    font-size: 9px;
  }

  .ai-node small {
    font-size: 8px;
  }

  .node-context,
  .node-products {
    left: 4%;
  }

  .node-data,
  .node-people {
    right: 4%;
  }

  .node-context,
  .node-data {
    top: 20%;
  }

  .node-products,
  .node-people {
    bottom: 14%;
  }

  .ai-core {
    width: 145px;
    height: 145px;
  }

  .core-orb {
    width: 42px;
    height: 42px;
  }

  .signal {
    display: none;
  }

  .connection-1,
  .connection-2,
  .connection-3,
  .connection-4 {
    width: 150px;
  }

  .connection-5 {
    width: 190px;
  }

  .connection-6 {
    width: 130px;
  }

  .label-top-right,
  .label-bottom-left {
    display: none;
  }

  /* SECTIONS */

  .section {
    padding:
      75px 0;
  }

  .section-head h2,
  .two-col h2 {
    font-size:
      clamp(
        38px,
        10vw,
        52px
      );
  }

  .cards.three,
  .feature-grid,
  .feature-grid.four,
  .role-grid,
  .principles,
  .two-col {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 340px;
  }

  /* PAGE HERO */

  .page-hero {
    padding:
      75px 0
      65px;
  }

  .page-hero h1 {
    font-size:
      clamp(
        44px,
        11vw,
        64px
      );
  }

  .page-hero p {
    font-size: 16px;
  }

  /* ARCHITECTURE */

  .arch-row {
    grid-template-columns:
      45px
      1fr;

    gap: 15px;
  }

  .arch-row h3 {
    font-size: 24px;
  }

  /* FOOTER */

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

    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .novariyan-logo {
    width: 155px;
    max-height: 48px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .ai-network {
    height: 400px;
  }

  .ai-node {
    width: 100px;
  }

  .ai-core {
    width: 125px;
    height: 125px;
  }

  .ai-core strong {
    font-size: 10px;
  }

  .ai-core > span {
    font-size: 7px;
  }

  .ring-two {
    inset: -24px;
  }

  .network-label {
    font-size: 7px;
  }

  .label-top {
    left: 15px;
    top: 15px;
  }

  .label-bottom {
    right: 15px;
    bottom: 15px;
  }

  .contact-form {
    padding: 22px;
  }

}