:root {
  --ink: #1e2633;
  --muted: #667085;
  --line: #e5e9f0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --brand: #e62f35;
  --brand-dark: #b51622;
  --accent: #158f61;
  --blue: #2c70d6;
  --shadow: 0 14px 34px rgba(30, 38, 51, 0.11);
  --page: min(1040px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(28px, calc((100vw - 1040px) / 2));
  border-bottom: 1px solid rgba(229, 233, 240, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(230, 47, 53, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  width: var(--page);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 120px) 0 clamp(78px, 9vw, 120px);
  background: transparent;
}

main {
  background: linear-gradient(135deg, #eef5ff 0, #f7fbff 430px, #ffffff 760px, #ffffff 100%);
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(52px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-text {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 46px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(7, 8, 10, 0.15);
}

.store-badge img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.store-badge-small {
  width: 138px;
  height: 42px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(500px, 100%);
  margin-top: 18px;
  background: transparent;
}

.hero-points div {
  padding: 16px 18px;
}

.hero-points div + div {
  border-left: 0;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.hero-points span {
  color: var(--muted);
  font-size: 14px;
}

.hero-points div:nth-child(2) span {
  white-space: nowrap;
}

.hero-points div:last-child span {
  white-space: nowrap;
}

.hero-media {
  justify-self: center;
  width: min(360px, 100%);
  transform: translateY(18px);
  padding: 14px;
  border: 0;
  border-radius: 36px;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.hero-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

#features .section-heading h2,
#screens .section-heading h2 {
  white-space: nowrap;
}

#features .section-heading {
  margin-bottom: 28px;
}

#features .section-heading h2,
#screens .section-heading h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 850;
}

.section-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

#features .section-subtitle {
  display: block;
}

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

.feature-card {
  min-height: 230px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  border-radius: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.feature-number-pdf {
  background: var(--brand);
}

.feature-number-blue {
  background: var(--blue);
}

.feature-number-green {
  background: var(--accent);
}

.feature-number-ppt {
  background: #f15a24;
}

.feature-card p,
.screen-card p,
.split-section p,
.faq-list p,
.contact-section p {
  color: var(--muted);
}

.screens-section {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--soft);
  padding-top: clamp(66px, 8vw, 96px);
}

.screen-grid {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screens-section .section-heading {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.screen-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.screen-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 8px;
  background: transparent;
}

.faq-section {
  padding-top: clamp(64px, 8vw, 96px);
}

.faq-section .section-heading {
  max-width: 860px;
  margin-bottom: 34px;
  text-align: center;
}

.faq-section .section-heading h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  width: var(--page);
  margin: 0 auto clamp(48px, 7vw, 80px);
  padding: clamp(44px, 6vw, 70px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.76), rgba(230, 47, 53, 0.62)),
    url("20260617-003345.jpeg") 50% 42% / cover;
  text-shadow: 0 1px 8px rgba(17, 24, 39, 0.35);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section p {
  max-width: 680px;
  font-size: 17px;
}

.mail-link {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(28px, calc((100vw - 1040px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 15px;
}

.footer-brand span {
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.legal-page {
  background: #fff;
}

.legal-content {
  width: min(880px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) 0;
}

.legal-content h1 {
  margin-bottom: 28px;
  font-size: clamp(36px, 5vw, 56px);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
}

.legal-content a {
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-media {
    width: min(312px, 82vw);
    transform: none;
  }

  .screen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section,
  .screen-grid,
  .screens-section .section-heading,
  .contact-section {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  #features .section-heading h2,
  #screens .section-heading h2 {
    white-space: normal;
  }

  h3 {
    font-size: 18px;
  }

  .hero-text,
  .contact-section p {
    font-size: 16px;
  }

  .feature-card {
    min-height: 0;
  }

  .hero-points,
  .feature-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

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

  .screen-card img {
    height: auto;
    object-fit: contain;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
