:root {
  --orange: #ff6701;
  --orange-dark: #d94e00;
  --black: #000000;
  --ink: #141414;
  --muted: #666666;
  --line: #e8e8e8;
  --soft: #f6f3ef;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--black);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  box-shadow: inset -8px -8px 0 var(--orange);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #333333;
  font-weight: 650;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--black);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 8vw, 124px) clamp(20px, 4vw, 64px);
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.hero-copy > p:not(.section-label),
.page-hero > p:not(.section-label),
.section-heading > p:not(.section-label) {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.section-label {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

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

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--black);
  border: 1px solid var(--line);
  background: var(--white);
}

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

.hero-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.floating-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.floating-panel span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
}

.floating-panel p {
  margin-top: 10px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(20px, 4vw, 64px);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.trust-strip div {
  display: grid;
  gap: 6px;
  padding: 28px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--black);
  font-size: 1.18rem;
}

.trust-strip span {
  color: var(--muted);
}

.split-section,
.future-section,
.contact-band,
.page-hero,
.product-highlight,
.product-page-card,
.product-list,
.contact-grid,
.contact-layout,
.team-section,
.legal-page {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}

.split-section > div:first-child {
  display: grid;
  align-content: start;
  gap: 18px;
}

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

.feature-grid article,
.roadmap article,
.contact-grid article,
.contact-details article,
.values-grid article {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
}

.icon-circle {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border-radius: 16px;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-highlight {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: #090909;
}

.product-highlight h2,
.product-highlight h3 {
  color: var(--white);
}

.product-highlight p {
  color: #d6d6d6;
}

.product-visual {
  overflow: hidden;
  border-radius: 24px;
}

.product-visual img {
  min-height: 480px;
  object-fit: cover;
}

.product-copy {
  display: grid;
  gap: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #f4f4f4;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

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

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 16px;
  margin-bottom: 34px;
}

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

.roadmap article {
  background: var(--white);
}

.roadmap span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--orange);
}

.contact-band .section-label,
.contact-band h2 {
  color: var(--white);
}

.contact-band h2 {
  max-width: 920px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  padding: 42px clamp(20px, 4vw, 64px);
  background: var(--black);
}

.site-footer p,
.site-footer a {
  color: #cfcfcf;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

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

.footer-brand span:last-child {
  color: var(--white);
}

.page-hero {
  display: grid;
  gap: 18px;
  background: var(--soft);
}

.page-hero.compact {
  padding-bottom: clamp(50px, 7vw, 84px);
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 6.4rem);
}

.product-page-card {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
}

.about-hero,
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.about-hero img {
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

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

.values-grid article {
  background: var(--white);
}

.team-section {
  display: grid;
  gap: 28px;
}

.team-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.team-disciplines span {
  padding: 12px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-weight: 850;
}

.detail-panel {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background: var(--black);
  border-radius: 24px;
  box-shadow: inset -12px -12px 0 var(--orange);
}

.detail-panel strong {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.detail-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.product-list {
  background: var(--white);
}

.product-list-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-list-card img {
  min-height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

.product-list-card > div {
  display: grid;
  gap: 20px;
}

.product-page-card img {
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-page-card > div:last-child {
  display: grid;
  gap: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tags span {
  padding: 9px 12px;
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-section {
  padding-top: clamp(72px, 9vw, 120px);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-grid a,
.contact-details a,
.legal-card a {
  color: var(--orange-dark);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 103, 1, 0.18);
  border-color: var(--orange);
}

.form-status {
  min-height: 24px;
  color: var(--orange-dark);
  font-weight: 850;
}

.plain-link {
  color: var(--orange-dark);
  font-weight: 850;
}

.legal-page {
  background: var(--soft);
}

.legal-page .page-hero {
  padding: 0 0 40px;
}

.legal-card {
  display: grid;
  max-width: 940px;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.legal-card h2 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .product-highlight,
  .product-page-card,
  .product-list-card,
  .about-hero,
  .product-detail-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 460px;
  }

  .feature-grid,
  .roadmap,
  .contact-grid,
  .values-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
  }

  .nav-toggle span + span {
    margin-top: -14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero,
  .split-section,
  .future-section,
  .contact-band,
  .page-hero,
  .product-highlight,
  .product-page-card,
  .contact-grid,
  .legal-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions,
  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .floating-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .product-visual img,
  .product-page-card img,
  .product-list-card img,
  .about-hero img {
    min-height: 360px;
  }

  .site-footer nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
