@charset "UTF-8";
/* ==========================================================================
   NineNorth — DeepSim
   Static stylesheet (vanilla CSS, no framework, no build step)

   1.  Tokens
   2.  Reset & base
   3.  Layout helpers
   4.  Decorative primitives (patterns, rules, halos, eyebrows, corners)
   5.  Buttons
   6.  Header / navigation
   7.  Hero
   8.  Theory (problem / opportunity)
   9.  Solution (DeepSim pillars & core modules)
   10. Hardware extensions
   11. Clients
   12. Contact CTA
   13. Footer
   14. Company page
   15. Contact page
   16. Video modal
   17. Scroll reveal & motion preferences
   18. Responsive (sm >= 640px, lg >= 1024px)
   ========================================================================== */

@import url('../fonts/fonts.css');

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;

  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-950: #172554;

  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-950: #083344;

  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;

  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Share Tech', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;

  --shell: 1440px;
  --shell-md: 1400px;
  --shell-sm: 1200px;
  --shell-xs: 1000px;

  --pad: 16px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* keeps in-page anchors clear of the fixed header */
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'salt', 'liga' 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
}

::selection {
  background-color: rgba(0, 149, 255, 0.3);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 149, 255, 0.5), rgba(0, 209, 255, 0.5));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 149, 255, 0.8), rgba(0, 209, 255, 0.8));
}

/* Visually hidden but readable by crawlers and screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--orange-500);
  color: #fff;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */

.shell {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.shell--md { max-width: var(--shell-md); }
.shell--sm { max-width: var(--shell-sm); }
.shell--xs { max-width: var(--shell-xs); }

.section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: 96px;
  padding-bottom: 96px;
}
.section--divided { border-bottom: 1px solid var(--line); }
.section--top-divided { border-top: 1px solid var(--line); }
.section--page { padding-top: 140px; min-height: 100vh; }

.section__head { margin-bottom: 64px; text-align: center; }

.panel { border: 1px solid var(--line); }
.panel--tint { background: linear-gradient(to bottom right, rgba(23, 37, 84, 0.1), transparent); }

/* ==========================================================================
   4. Decorative primitives
   ========================================================================== */

.pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.pattern--grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.pattern--diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 10px,
    rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px
  );
}
.pattern--dots {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}

.o-5  { opacity: 0.05; }
.o-8  { opacity: 0.08; }
.o-10 { opacity: 0.10; }
.o-15 { opacity: 0.15; }
.o-20 { opacity: 0.20; }
.o-30 { opacity: 0.30; }
.o-40 { opacity: 0.40; }

/* Soft glow. A radial-gradient rather than filter:blur() — same look for a
   fraction of the paint cost, which matters on mobile GPUs. */
.halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.halo--blue   { background: radial-gradient(closest-side, rgba(59, 130, 246, 0.28), rgba(59, 130, 246, 0.06) 55%, transparent); }
.halo--cyan   { background: radial-gradient(closest-side, rgba(6, 182, 212, 0.20), rgba(6, 182, 212, 0.05) 55%, transparent); }
.halo--orange { background: radial-gradient(closest-side, rgba(249, 115, 22, 0.20), rgba(249, 115, 22, 0.05) 55%, transparent); }

.halo--center {
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 130vw);
  aspect-ratio: 1 / 1;
}
.halo--mid {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 110vw);
  aspect-ratio: 1 / 1;
}
.halo--left  { top: 50%; left: 25%; transform: translate(-50%, -50%); width: min(800px, 100vw); aspect-ratio: 1 / 1; }
.halo--right { top: 50%; right: 25%; transform: translate(50%, -50%); width: min(800px, 100vw); aspect-ratio: 1 / 1; }

/* 1px gradient hairlines */
.rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.3), transparent);
}
.rule--strong    { background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.5), transparent); }
.rule--cyan      { background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.4), transparent); }
.rule--cyan-soft { background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), transparent); }
.rule--orange    { background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.5), transparent); }
.rule--white     { background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent); }
.rule--spaced    { max-width: 800px; margin: 0 auto 64px; }
.rule--wide      { margin: 64px auto; }

/* Eyebrow: mono label flanked by two hairlines */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.7);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  flex: none;
  width: 48px;
  height: 1px;
}
.eyebrow::before { background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.4)); }
.eyebrow::after  { background: linear-gradient(to left, transparent, rgba(59, 130, 246, 0.4)); }

.eyebrow--cyan { color: rgba(34, 211, 238, 0.75); }
.eyebrow--cyan::before { background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.4)); }
.eyebrow--cyan::after  { background: linear-gradient(to left, transparent, rgba(6, 182, 212, 0.4)); }

.eyebrow--orange { color: rgba(251, 146, 60, 0.9); }
.eyebrow--orange::before { background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.4)); }
.eyebrow--orange::after  { background: linear-gradient(to left, transparent, rgba(249, 115, 22, 0.4)); }

.eyebrow--muted { color: rgba(255, 255, 255, 0.5); }
.eyebrow--muted::before { background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2)); }
.eyebrow--muted::after  { background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2)); }

.eyebrow--lg { font-size: 15px; font-weight: 500; }
.eyebrow--lg::before, .eyebrow--lg::after { width: 40px; }
.eyebrow--sm { font-size: 11px; }
.eyebrow--sm::before, .eyebrow--sm::after { width: 32px; }

/* Corner tick marks */
.corners > i {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.corners > i:nth-child(1) { top: 0; left: 0;     border-top: 2px solid rgba(249, 115, 22, 0.4); border-left: 2px solid rgba(249, 115, 22, 0.4); }
.corners > i:nth-child(2) { top: 0; right: 0;    border-top: 2px solid rgba(249, 115, 22, 0.4); border-right: 2px solid rgba(249, 115, 22, 0.4); }
.corners > i:nth-child(3) { bottom: 0; left: 0;  border-bottom: 2px solid rgba(249, 115, 22, 0.4); border-left: 2px solid rgba(249, 115, 22, 0.4); }
.corners > i:nth-child(4) { bottom: 0; right: 0; border-bottom: 2px solid rgba(249, 115, 22, 0.4); border-right: 2px solid rgba(249, 115, 22, 0.4); }

/* Mono coordinates strip */
.coords {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(96, 165, 250, 0.3);
}
.coords span + span { margin-left: 8px; color: rgba(255, 255, 255, 0.2); }

.icon {
  width: 24px; height: 24px;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--xs { width: 14px; height: 14px; }
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 20px; height: 20px; }
.icon--lg { width: 28px; height: 28px; }
.icon--fill { fill: currentColor; stroke: none; }

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange-500);
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover {
  background: var(--orange-600);
  box-shadow: 0 12px 28px -6px rgba(249, 115, 22, 0.45);
}
.btn .icon--shift { transition: transform 0.3s var(--ease); }
.btn:hover .icon--shift { transform: translateX(4px); }

/* ==========================================================================
   6. Header / navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.site-header__inner {
  position: relative;
  z-index: 10;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px var(--pad);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 28px; width: auto; }

.nav-desktop { display: none; }
.nav-desktop__list {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.nav-desktop__list > li + li { border-left: 1px solid var(--line); }

.nav-desktop__link {
  position: relative;
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, background-color 0.3s;
}
.nav-desktop__link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--blue-500), var(--blue-400));
  transition: width 0.3s var(--ease);
}
.nav-desktop__link:hover,
.nav-desktop__link[aria-current="page"] { color: #fff; background: rgba(59, 130, 246, 0.05); }
.nav-desktop__link:hover::after,
.nav-desktop__link[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.3s, background-color 0.3s;
}
.nav-toggle:hover { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.05); }
.nav-toggle .icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: block; }
.nav-toggle[aria-expanded="true"] .icon--open { display: none; }

.nav-mobile {
  display: none;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.nav-mobile.is-open { display: block; }
.nav-mobile__list > li + li { border-top: 1px solid var(--line); }
.nav-mobile__link {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, background-color 0.3s;
}
.nav-mobile__link:hover,
.nav-mobile__link[aria-current="page"] { color: #fff; background: rgba(59, 130, 246, 0.05); }

/* ==========================================================================
   7. Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::before,
.hero__bg::after { content: ""; position: absolute; pointer-events: none; }
.hero__bg::before {
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15) 55%, transparent);
}
.hero__bg::after {
  left: 0; right: 0; bottom: 0;
  height: 256px;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.6), transparent);
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 128px var(--pad) 96px;
}

.hero__card {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero__card::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.6));
}
.hero__card-body { padding: 32px; }

.hero__logo { height: 40px; width: auto; margin-bottom: 24px; }

.hero__title {
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.hero__divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin-bottom: 32px; }

.hero__marker { display: none; }

/* ==========================================================================
   8. Theory — problem / opportunity
   ========================================================================== */

.problem {
  position: relative;
  margin-bottom: 64px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: linear-gradient(to bottom right, rgba(67, 20, 7, 0.25), transparent);
}
.problem__body { position: relative; padding: 48px 24px; text-align: center; }
.problem__quote {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(249, 115, 22, 0.15);
}
.problem__quote--open  { top: 32px; left: 32px; }
.problem__quote--close { bottom: 32px; right: 32px; }

.problem__title { font-size: 34px; line-height: 1.1; letter-spacing: -0.02em; }
.problem__accent {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  color: var(--orange-500);
}
.problem__accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.6), transparent);
}

.opportunity {
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(to bottom right, rgba(8, 51, 68, 0.2), transparent);
}
.opportunity__body { padding: 40px 24px; text-align: center; }
.opportunity__text {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   9. Solution — pillars & core modules
   ========================================================================== */

.solution__intro { text-align: center; }
.solution__logo { height: 56px; width: auto; margin: 0 auto 40px; }
.solution__title {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.solution__lead {
  max-width: 700px;
  margin: 0 auto 64px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* --- 4 pillars -------------------------------------------------------- */

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  text-align: center;
}
.pillar {
  background: #000;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.5s var(--ease);
}
.pillar:last-child { border-bottom: 0; }
.pillar:hover { background: rgba(59, 130, 246, 0.05); }

.pillar__media {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
}
.pillar__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pillar:hover .pillar__media img { transform: scale(1.05); }
.pillar__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.2) 55%, transparent);
  opacity: 0.6;
}

.pillar__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}
.pillar__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-400);
  transition: border-color 0.3s, background-color 0.3s;
}
.pillar:hover .pillar__icon { border-color: rgba(59, 130, 246, 0.5); background: rgba(59, 130, 246, 0.2); }
.pillar__title { font-size: 18px; font-weight: 500; color: var(--blue-400); }
.pillar__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.pillar:hover .pillar__text { color: rgba(255, 255, 255, 0.75); }

/* --- core modules ----------------------------------------------------- */

.modules { border: 1px solid var(--line); text-align: left; }

.modules__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.modules__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.modules__label::before { content: ""; width: 6px; height: 6px; background: var(--blue-400); }
.modules__count { font-family: var(--font-mono); font-size: 10px; color: rgba(255, 255, 255, 0.3); }

.modules__grid { display: grid; grid-template-columns: 1fr; }

.module {
  position: relative;
  background: #000;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.5s var(--ease);
}
.module:last-child { border-bottom: 0; }
.module:hover { background: rgba(59, 130, 246, 0.1); }

.module__body { padding: 24px; display: grid; gap: 20px; }

.module__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.module__head-left { display: flex; align-items: center; gap: 16px; }
.module__number {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.05);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-400);
  transition: border-color 0.3s, background-color 0.3s;
}
.module:hover .module__number { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.1); }
.module__title { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; color: var(--blue-400); }
.module__head > .icon { color: rgba(96, 165, 250, 0.6); }

.module__sep { height: 1px; background: rgba(59, 130, 246, 0.2); }

.module__features { display: grid; gap: 10px; }
.module__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.module:hover .module__features li { color: rgba(255, 255, 255, 0.75); }
.module__features li::before {
  content: "\2192";
  flex: none;
  margin-top: 2px;
  font-family: var(--font-mono);
  color: rgba(96, 165, 250, 0.6);
}

.module__shot {
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: border-color 0.3s;
}
.module:hover .module__shot { border-color: rgba(59, 130, 246, 0.4); }
.module__shot img { width: 100%; height: auto; }

/* ==========================================================================
   10. Hardware extensions
   ========================================================================== */

.hardware__title { font-size: 28px; line-height: 1.1; color: rgba(255, 255, 255, 0.9); }

.hw {
  margin-bottom: 32px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hw__split { display: grid; grid-template-columns: 1fr; }

.hw__media {
  position: relative;
  height: 300px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(to bottom right, rgba(23, 37, 84, 0.2), #000);
}
.hw__media img { width: 100%; height: 100%; object-fit: cover; }
.hw__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}

.hw__body { padding: 24px; }
.hw__title { font-size: 32px; line-height: 1.05; margin-bottom: 16px; }
.hw__title span { color: var(--blue-400); }
.hw__lead { margin-bottom: 24px; font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.hw__sep {
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.3), rgba(255, 255, 255, 0.08), transparent);
}
.hw__text { margin-bottom: 32px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }

.hw__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.spec {
  padding: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(23, 37, 84, 0.05);
  transition: background-color 0.3s, border-color 0.3s;
}
.spec:hover { background: rgba(59, 130, 246, 0.05); border-color: rgba(59, 130, 246, 0.4); }
.spec__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
  color: rgba(96, 165, 250, 0.8);
}
.spec__name { display: block; margin-bottom: 2px; font-size: 12px; font-weight: 500; color: #fff; }
.spec__note { display: block; font-size: 10px; color: rgba(255, 255, 255, 0.5); }

.hw-pair { display: grid; grid-template-columns: 1fr; gap: 32px; }
.hw-pair .hw { margin-bottom: 0; }

/* orange variant — DeepSim Box */
.hw--orange { border-color: rgba(249, 115, 22, 0.2); }
.hw--orange .hw__media { height: 350px; border-bottom-color: rgba(249, 115, 22, 0.2); }
.hw--orange .hw__title { font-size: 28px; }
.hw--orange .hw__title span { color: var(--orange-500); }
.hw--orange .hw__lead { font-size: 15px; }
.hw--orange .hw__sep { background: linear-gradient(to right, rgba(249, 115, 22, 0.3), rgba(255, 255, 255, 0.08), transparent); }
.hw--orange .spec { border-color: rgba(249, 115, 22, 0.2); background: rgba(67, 20, 7, 0.08); }
.hw--orange .spec:hover { background: rgba(249, 115, 22, 0.05); border-color: rgba(249, 115, 22, 0.4); }
.hw--orange .spec__icon { border-color: rgba(249, 115, 22, 0.3); background: rgba(249, 115, 22, 0.1); color: rgba(251, 146, 60, 0.8); }

/* cyan variant — DeepSim Full Simulator */
.hw--cyan { border-color: rgba(6, 182, 212, 0.2); }
.hw--cyan .hw__media { height: 350px; border-bottom-color: rgba(6, 182, 212, 0.2); }
.hw--cyan .hw__title { font-size: 28px; }
.hw--cyan .hw__title span { color: var(--cyan-400); }
.hw--cyan .hw__lead { font-size: 15px; }
.hw--cyan .hw__sep { background: linear-gradient(to right, rgba(6, 182, 212, 0.3), rgba(255, 255, 255, 0.08), transparent); }
.hw--cyan .spec { border-color: rgba(6, 182, 212, 0.2); background: rgba(8, 51, 68, 0.08); }
.hw--cyan .spec:hover { background: rgba(6, 182, 212, 0.05); border-color: rgba(6, 182, 212, 0.4); }
.hw--cyan .spec__icon { border-color: rgba(6, 182, 212, 0.3); background: rgba(6, 182, 212, 0.1); color: rgba(34, 211, 238, 0.8); }

/* ==========================================================================
   11. Clients
   ========================================================================== */

.clients__head { padding: 24px; text-align: center; border-bottom: 1px solid var(--line); }
.clients__title { font-size: 32px; line-height: 1.15; margin-bottom: 12px; }
.clients__lead { max-width: 600px; margin: 0 auto; font-size: 16px; color: rgba(255, 255, 255, 0.5); }

.clients__grid { display: grid; grid-template-columns: 1fr; }
.client {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 32px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.5s var(--ease);
}
.client:last-child { border-bottom: 0; }
.client:hover { background: rgba(59, 130, 246, 0.05); }
.client img {
  width: 100%;
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.5s var(--ease);
}
.client:hover img { opacity: 1; }

/* ==========================================================================
   12. Contact CTA
   ========================================================================== */

.cta { text-align: center; }
.cta__title { font-size: 36px; line-height: 1.1; margin-bottom: 24px; }
.cta__lead {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.cta__meta {
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}
.cta__meta i { font-style: normal; margin: 0 12px; color: rgba(255, 255, 255, 0.2); }

/* ==========================================================================
   13. Footer
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background: #000;
  border-top: 1px solid var(--line-soft);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.site-footer__top { display: flex; flex-direction: column; gap: 24px; }
.site-footer__brand img { height: 20px; width: auto; margin-bottom: 8px; }
.site-footer__tagline { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

.site-footer__nav { display: flex; gap: 32px; }
.site-footer__col-title {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--blue-400);
}
.site-footer__col li + li { margin-top: 6px; }
.site-footer__col a { font-size: 13px; color: rgba(255, 255, 255, 0.6); transition: color 0.3s; }
.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.site-footer__copy { font-size: 12px; color: rgba(255, 255, 255, 0.3); }
.site-footer .coords { font-size: 9px; color: rgba(96, 165, 250, 0.25); }
.site-footer .coords span + span { color: rgba(255, 255, 255, 0.15); }

/* ==========================================================================
   14. Company page
   ========================================================================== */

.company__intro { padding: 32px 24px; text-align: center; border-bottom: 1px solid var(--line); }
.company__title { font-size: 36px; line-height: 1.2; margin-bottom: 32px; }
.company__lead {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.company__lead strong { font-weight: 400; color: #fff; }

.company__story {
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom right, rgba(23, 37, 84, 0.06), transparent);
}
.company__story-inner { max-width: 900px; margin: 0 auto; }
.company__story p { font-size: 15px; line-height: 1.8; color: rgba(255, 255, 255, 0.7); }
.company__story p + p { margin-top: 24px; }

.company__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.company__figure-media { position: relative; height: 400px; }
.company__figure-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.company__figure:hover .company__figure-media img { transform: scale(1.05); }
.company__figure-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4) 55%, transparent);
}
.company__caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; }
.company__caption-inner { max-width: 900px; margin: 0 auto; }
.company__caption-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(34, 211, 238, 0.7);
}
.company__caption-label::before { content: ""; width: 24px; height: 1px; background: rgba(6, 182, 212, 0.6); }
.company__caption p { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); }

.founders { display: grid; grid-template-columns: 1fr; }
.founder { padding: 24px; border-bottom: 1px solid var(--line); transition: background-color 0.3s; }
.founder:last-child { border-bottom: 0; }
.founder:hover { background: rgba(59, 130, 246, 0.05); }
.founder__photo {
  max-width: 200px;
  margin: 0 auto 24px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__name-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.founder__name-row::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.founder__name { font-size: 22px; font-weight: 500; color: #fff; }
.founder__role {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.7);
}
.founder__bio { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }

/* ==========================================================================
   15. Contact page
   ========================================================================== */

.contact__title { font-size: 36px; line-height: 1.1; margin-bottom: 24px; }
.contact__lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.contact__grid { display: grid; grid-template-columns: 1fr; }

.contact__aside {
  position: relative;
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}
.contact__facts { position: relative; z-index: 2; display: grid; gap: 24px; }
.fact { padding-left: 16px; border-left: 2px solid rgba(59, 130, 246, 0.5); }
.fact__label {
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}
.fact__value { font-size: 15px; color: rgba(255, 255, 255, 0.8); }
.fact__value a { border-bottom: 1px solid rgba(96, 165, 250, 0.4); transition: color 0.3s, border-color 0.3s; }
.fact__value a:hover { color: var(--blue-400); border-color: var(--blue-400); }

.contact__coords {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact__coords div + div { margin-top: 8px; }

.contact__form-wrap { position: relative; padding: 32px 24px; background: #000; }

.form { position: relative; z-index: 2; display: grid; gap: 32px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 32px; }

.field { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.field label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-400);
}
.field label span { color: rgba(255, 255, 255, 0.4); }
.field input,
.field textarea {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
.field textarea { resize: none; }
.field input:focus,
.field textarea:focus { outline: none; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.2); }
.field:focus-within { border-bottom-color: rgba(59, 130, 246, 0.6); }

.form__note { font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, 0.35); }
.form__note a { color: rgba(96, 165, 250, 0.9); border-bottom: 1px solid rgba(96, 165, 250, 0.4); }

/* honeypot — hidden from humans, tempting for bots */
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   16. Video modal
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal.is-open { display: flex; animation: modal-in 0.3s var(--ease); }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  animation: dialog-in 0.3s var(--ease);
}
@keyframes dialog-in { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.modal__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.modal__title::before { content: ""; width: 6px; height: 6px; background: var(--blue-400); }

.modal__close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.modal__close:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.25); color: #fff; }

.modal__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: linear-gradient(to bottom right, #000, rgba(23, 37, 84, 0.2), #000);
}
.modal__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   17. Scroll reveal & motion preferences
   ========================================================================== */

/* Content is visible by default: with JS off, or on mobile, nothing is hidden. */
.reveal { opacity: 1; transform: none; }

@media (min-width: 1024px) {
  .js .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .reveal--d1 { transition-delay: 0.12s; }
  .js .reveal--d2 { transition-delay: 0.24s; }
  .js .reveal--d3 { transition-delay: 0.36s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.is-visible { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   18. Responsive — sm (>= 640px)
   ========================================================================== */

@media (min-width: 640px) {
  :root { --pad: 32px; }

  .section { padding-top: 128px; padding-bottom: 128px; }
  .section--page { padding-top: 160px; }
  .section__head { margin-bottom: 80px; }

  .hero__card-body { padding: 48px; }
  .hero__logo { height: 48px; }
  .hero__title { font-size: 56px; }
  .hero__lead { font-size: 18px; }

  .problem { margin-bottom: 80px; }
  .problem__body { padding: 64px 48px; }
  .problem__quote { font-size: 56px; }
  .problem__quote--open { top: 48px; left: 48px; }
  .problem__quote--close { bottom: 48px; right: 48px; }
  .problem__title { font-size: 52px; }
  .opportunity__body { padding: 56px 40px; }
  .opportunity__text { font-size: 28px; }

  .solution__logo { height: 64px; margin-bottom: 48px; }
  .solution__title { font-size: 40px; margin-bottom: 32px; }
  .solution__lead { margin-bottom: 80px; }
  .rule--spaced { margin-bottom: 80px; }
  .rule--wide { margin: 80px auto; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }
  .pillar__body { padding: 32px; }
  .pillar__title { font-size: 20px; }

  .module__body { padding: 32px; }
  .module__number { width: 48px; height: 48px; }
  .module__title { font-size: 22px; }

  .hardware__title { font-size: 32px; }
  .hw__body { padding: 32px; }
  .hw--orange .hw__title, .hw--cyan .hw__title { font-size: 32px; }

  .clients__head { padding: 40px; }
  .clients__title { font-size: 40px; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .client { min-height: 220px; padding: 40px; border-bottom: 0; border-right: 1px solid var(--line); }
  .client:last-child { border-right: 0; }
  .client img { max-width: 240px; }

  .cta__title { font-size: 48px; margin-bottom: 32px; }
  .cta__lead { font-size: 18px; margin-bottom: 48px; }
  .cta__meta { margin-top: 64px; }

  .site-footer { padding: 64px 0; }
  .site-footer__brand img { height: 24px; }
  .site-footer__tagline { font-size: 14px; }
  .site-footer__nav { gap: 48px; }
  .site-footer__col-title { font-size: 13px; margin-bottom: 16px; }
  .site-footer__col a { font-size: 14px; }
  .site-footer__col li + li { margin-top: 8px; }
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 64px;
    padding-top: 32px;
    text-align: left;
  }
  .site-footer__copy { font-size: 13px; }

  .company__intro { padding: 48px; }
  .company__title { font-size: 48px; margin-bottom: 40px; }
  .company__lead { font-size: 18px; }
  .company__story { padding: 48px; }
  .company__story p { font-size: 16px; }
  .company__figure-media { height: 500px; }
  .company__caption { padding: 32px; }
  .company__caption p { font-size: 15px; }
  .founder { padding: 40px; }
  .founder__name { font-size: 24px; }

  .contact__title { font-size: 48px; }
  .contact__lead { font-size: 18px; }
  .contact__aside { padding: 40px; }
  .contact__form-wrap { padding: 40px; }
  .form__row { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   18. Responsive — lg (>= 1024px)
   ========================================================================== */

@media (min-width: 1024px) {
  :root { --pad: 64px; }

  .section { padding-top: 160px; padding-bottom: 160px; }
  .section--page { padding-top: 180px; }

  .brand img { height: 32px; }
  .nav-desktop { display: flex; align-items: center; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .hero__inner { padding: 96px var(--pad); }
  .hero__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
  }
  .hero__col { grid-column: span 7 / span 7; }
  .hero__title { font-size: 72px; }
  .hero__marker {
    display: block;
    position: absolute;
    z-index: 10;
    width: 16px; height: 16px;
  }
  .hero__marker--tr { top: 96px; right: 32px; border-top: 2px solid rgba(96, 165, 250, 0.3); border-right: 2px solid rgba(96, 165, 250, 0.3); }
  .hero__marker--bl { bottom: 32px; left: 32px; border-bottom: 2px solid rgba(96, 165, 250, 0.3); border-left: 2px solid rgba(96, 165, 250, 0.3); }

  .problem__body { padding: 80px; }
  .problem__title { font-size: 64px; }
  .opportunity__body { padding: 64px; }
  .opportunity__text { font-size: 34px; }

  .solution__logo { height: 80px; }
  .solution__title { font-size: 48px; }

  .pillars { grid-template-columns: repeat(4, 1fr); }
  .pillar { border-bottom: 0; }
  .pillar:nth-child(2n) { border-right: 1px solid var(--line); }
  .pillar:last-child { border-right: 0; }

  .modules__grid { grid-template-columns: repeat(2, 1fr); }
  .module { border-bottom: 0; border-right: 1px solid var(--line); }
  .module:nth-child(2n) { border-right: 0; }
  .module:nth-child(n+3) { border-top: 1px solid var(--line); }
  .module__body { padding: 40px; }
  .module__title { font-size: 24px; }

  .hardware__title { font-size: 36px; }
  .hw__split { grid-template-columns: 45% 55%; }
  .hw__split .hw__media { height: auto; border-bottom: 0; border-right: 1px solid rgba(59, 130, 246, 0.2); }
  /* the column is stretched by the grid, so fill it absolutely — a percentage
     height would have nothing definite to resolve against */
  .hw__split .hw__media img { position: absolute; inset: 0; }
  .hw__body { padding: 40px; }
  .hw__title { font-size: 40px; }
  .hw__specs { grid-template-columns: repeat(4, 1fr); }
  .hw-pair { grid-template-columns: repeat(2, 1fr); }
  .hw-pair .hw__specs { grid-template-columns: repeat(2, 1fr); }
  .hw--orange .hw__title, .hw--cyan .hw__title { font-size: 36px; }

  .clients__head { padding: 64px; }
  .clients__title { font-size: 48px; }

  .cta__title { font-size: 56px; }

  .company__intro { padding: 80px; }
  .company__title { font-size: 56px; }
  .company__story { padding: 64px; }
  .company__figure-media { height: 600px; }
  .company__caption { padding: 40px; }
  .founders { grid-template-columns: repeat(2, 1fr); }
  .founder { padding: 64px; border-bottom: 0; border-right: 1px solid var(--line); }
  .founder:last-child { border-right: 0; }
  .founder__name { font-size: 26px; }

  .contact__title { font-size: 56px; }
  .contact__grid { grid-template-columns: 5fr 7fr; }
  .contact__aside { padding: 48px; border-bottom: 0; border-right: 1px solid var(--line); }
  .contact__form-wrap { padding: 48px; }
}
