@font-face {
  font-family: Timmana;
  src: url('../assets/fonts/Timmana-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #ededed;
  --surface: #ffffff;
  --ink: #000000;
  --muted: #4c4b51;
  --accent: #52b8b2;
  --radius: 28px;
  --shadow: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--ink); outline-offset: 5px; }
section[id], footer[id] { scroll-margin-top: 24px; }
.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;
}
.container {
  width: min(1400px, calc(100% - 96px));
  margin-inline: auto;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { text-transform: uppercase; }
h2 {
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 40px;
  line-height: 1.1;
}

.site-header { padding: 0 0 29px; }
.header-inner,
.hero-grid,
.footer-inner {
  background: var(--surface);
  border-radius: var(--radius);
}
.header-inner {
  min-height: 137px;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  color: var(--muted);
  font-family: Timmana, Arial, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
/* Compensate for Timmana's extra space below the visible letters. */
.header-inner .brand { transform: translateY(.25em); }
.site-nav { display: flex; align-items: center; gap: 58px; }
.site-nav a {
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--accent); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-shell { padding-bottom: 32px; }
.hero-grid {
  min-height: 640px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 720fr) minmax(0, 604fr);
  gap: 32px;
}
.hero-copy {
  min-width: 0;
  padding: 60px 32px 39px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy h1 {
  max-width: 656px;
  margin-bottom: 46px;
  font-size: 40px;
  line-height: 1.03;
  letter-spacing: -1.2px;
}
.hero-copy > p:not(.price) {
  max-width: 657px;
  margin-bottom: 64px;
  font-size: 32px;
  line-height: 1.2;
}
.price {
  margin-bottom: 60px;
  font-size: 30px;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-width: 190px;
  min-height: 56px;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
.button:hover,
.button:focus-visible { color: #fff; background: var(--accent); }
.hero-media { height: 596px; min-height: 0; overflow: hidden; border-radius: calc(var(--radius) - 8px); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.use-cases { padding: 44px 0 28px; }
.characteristics,
.benefits { padding: 34px 0 28px; }
.use-cases h2,
.characteristics h2,
.benefits h2 { margin-left: 8px; }
.use-grid {
  display: grid;
  grid-template-columns: minmax(0, 710fr) minmax(0, 658fr);
  grid-template-rows: repeat(2, minmax(269px, auto));
  gap: 32px;
}
.use-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.use-card img { width: 100%; height: 161px; flex: 0 0 auto; border-radius: 24px; object-fit: cover; }
.use-card h3 {
  min-height: 64px;
  margin: 0;
  padding: 24px 7px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.use-card-industry { grid-column: 2; grid-row: 1 / 3; }
.use-card-industry img { height: 357px; }
.use-card-industry h3 { min-height: 170px; padding: 22px 70px 0 7px; line-height: 1.58; }

.feature-list { display: grid; gap: 35px; }
.feature-row {
  position: relative;
  min-height: 170px;
  padding: 30px 44px 30px 88px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.feature-row p { margin: 0; }
.dimensions { display: flex; flex-wrap: wrap; column-gap: 40px; }
.dimensions > span { white-space: nowrap; }
.feature-row strong,
.feature-row span:not(.feature-dot),
.feature-row p { font-size: 32px; line-height: 1.55; }
.feature-dot,
.spec-card i,
.benefit-card i {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--accent);
}
.feature-dot { position: absolute; left: -38px; top: 50%; transform: translateY(-50%); box-shadow: 0 0 0 14px var(--bg); }

.benefits { padding-bottom: 95px; }
.benefits h2 { margin-bottom: 53px; }
.spec-grid,
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 31px; }
.spec-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 1fr; margin-bottom: 31px; }
.spec-card { grid-column: span 2; }
.spec-card:nth-last-child(-n + 2) { grid-column: span 3; }
.spec-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.spec-card {
  min-height: 169px;
  padding: 22px 30px 20px 39px;
}
.spec-card p { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin: 0; }
.spec-card strong { min-height: 2.3em; font-size: 32px; line-height: 1.15; }
.spec-card span { display: inline-block; margin-right: 75px; font-size: 30px; line-height: 1.2; }
.spec-card i,
.benefit-card i { position: absolute; right: 10px; bottom: 10px; }
.benefit-grid { grid-auto-rows: minmax(370px, auto); }
.benefit-card { padding: 23px 39px 95px; }
.benefit-card h3 { min-height: 64px; margin-bottom: 39px; font-size: 32px; line-height: 1; }
.benefit-card p { max-width: 365px; margin-bottom: 0; font-size: 25px; line-height: 1.28; }
.benefit-card:nth-child(n + 4) { padding-top: 33px; }

.site-footer { padding: 0; }
.footer-inner {
  min-height: 169px;
  padding: 24px 54px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 28px;
}
.footer-inner p { margin: 0; font-size: 22px; line-height: 1.3; text-transform: uppercase; }
.footer-inner p:last-child { text-align: right; }
.footer-inner a { text-decoration: none; text-transform: none; }
.footer-inner > * { min-width: 0; }
.footer-inner p { overflow-wrap: anywhere; }

@media (max-width: 1439px) {
  .spec-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-card, .spec-card:nth-last-child(-n + 2) { grid-column: auto; }
  .spec-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1200px) {
  .container { width: calc(100% - 48px); }
  .header-inner { padding-inline: 32px; }
  .site-nav { gap: 28px; }
  .site-nav a { font-size: 18px; }
  .hero-grid { min-height: auto; gap: 20px; align-items: center; }
  .hero-copy { padding: 30px 10px; }
  .hero-copy h1 { font-size: 32px; margin-bottom: 28px; }
  .hero-copy > p:not(.price), .price { font-size: 24px; margin-bottom: 28px; }
  .hero-media { height: auto; aspect-ratio: 1; }
  h2 { font-size: 32px; }
  .use-card h3 { font-size: 26px; }
  .use-card-industry h3 { padding-right: 7px; line-height: 1.4; }
  .feature-dot { left: 16px; width: 42px; height: 42px; box-shadow: 0 0 0 8px var(--bg); }
  .feature-row strong, .feature-row span:not(.feature-dot), .feature-row p { font-size: 26px; }
  .spec-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-card strong { font-size: 26px; }
  .spec-card span { font-size: 24px; }
  .benefit-card h3 { font-size: 28px; min-height: 56px; }
  .benefit-card p { font-size: 22px; }
  .footer-inner { padding-inline: 32px; grid-template-columns: auto 1fr auto; }
  .footer-inner p { font-size: 18px; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .container { width: min(100% - 32px, 720px); }
  .header-inner { position: relative; min-height: 82px; padding: 0 26px; }
  .brand { font-size: 48px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 22px 26px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { display: flex; align-items: center; min-height: 44px; width: 100%; }
  .hero-grid { min-height: auto; grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding: 30px 18px 20px; }
  .hero-copy h1 { margin-bottom: 28px; font-size: clamp(28px, 4.5vw, 40px); letter-spacing: -.6px; }
  .hero-copy > p:not(.price), .price { margin-bottom: 28px; font-size: 19px; }
  .hero-media { height: auto; min-height: 0; aspect-ratio: 1 / 1; }
  .use-grid { grid-template-rows: repeat(2, minmax(240px, auto)); gap: 20px; }
  .use-card { padding: 16px; }
  .use-card h3 { font-size: 22px; padding: 16px 4px 0; min-height: 0; }
  .use-card-industry img { height: 0; min-height: 260px; flex: 1 1 auto; }
  .use-card-industry h3 { min-height: 0; line-height: 1.4; }
  .feature-row { min-height: 130px; }
  .feature-row strong,
  .feature-row span:not(.feature-dot),
  .feature-row p { font-size: 20px; line-height: 1.4; }
  .spec-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .spec-card, .benefit-card { padding-inline: 24px; }
  .spec-card strong { font-size: 20px; }
  .spec-card span { font-size: 18px; }
  .benefit-grid { grid-auto-rows: minmax(258px, auto); }
  .benefit-card h3 { min-height: 49px; margin-bottom: 24px; font-size: 22px; line-height: 1.1; }
  .benefit-card p { font-size: 18px; line-height: 1.3; }
  .benefits h2 { margin-bottom: 29px; }
  .footer-inner { padding: 28px; grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-inner .brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .spec-grid, .benefit-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 520px); }
  .site-header { padding-top: 12px; }
  h2 { margin-bottom: 18px; font-size: 22px; }
  .section-shell { padding-bottom: 14px; }
  .hero-grid { padding: 12px; gap: 12px; border-radius: 20px; }
  .hero-copy { padding: 22px 10px 18px; }
  .hero-copy h1 { font-size: clamp(26px, 6.7vw, 36px); letter-spacing: -.6px; }
  .use-cases, .characteristics, .benefits { padding: 22px 0 16px; }
  .use-grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: none; gap: 14px; }
  .use-card, .use-card-industry { grid-column: auto; grid-row: auto; }
  .use-card { min-height: 210px; border-radius: 20px; }
  .use-card img, .use-card-industry img { height: 160px; min-height: 0; flex: 0 0 auto; border-radius: 14px; }
  .use-card h3, .use-card-industry h3 { min-height: 0; padding: 14px 4px 0; font-size: 20px; line-height: 1.4; }
  .feature-list { gap: 14px; }
  .feature-row { min-height: 96px; padding: 20px 18px 18px 56px; border-radius: 16px; }
  .feature-dot { left: 12px; width: 26px; height: 26px; box-shadow: 0 0 0 6px var(--bg); }
  .feature-row strong { font-size: 16px; }
  .feature-row span:not(.feature-dot) { font-size: 16px; }
  .dimensions { gap: 4px 20px; }
  .feature-row p { font-size: 16px; line-height: 1.45; }
  .spec-grid, .benefit-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .spec-card { min-height: 140px; }
  .spec-card p { font-size: 16px; line-height: 1.6; }
  .spec-card span { margin-right: 55px; }
  .spec-card strong { font-size: 18px; }
  .spec-card span { font-size: 16px; }
  .spec-card i,
  .benefit-card i { width: 55px; height: 55px; }
  .benefit-grid { grid-auto-rows: auto; }
  .benefit-card { min-height: 190px; padding: 24px 24px 80px; }
  .benefit-card:nth-child(n + 4) { padding-top: 24px; }
  .benefit-card h3 { min-height: 0; font-size: 20px; margin-bottom: 18px; }
  .benefit-card h3 br { display: none; }
  .benefit-card p { font-size: 16px; }
  .footer-inner { min-height: 0; grid-template-columns: 1fr; gap: 22px; }
  .footer-inner .brand { grid-column: auto; }
  .footer-inner p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
