:root {
  --bg-top: #f4f8fb;
  --bg-bottom: #edf7f5;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --ink: #16222c;
  --muted: #617283;
  --line: rgba(18, 31, 42, 0.08);
  --brand: #0c7fb0;
  --brand-deep: #0a5b7e;
  --brand-soft: #2eb798;
  --shadow: 0 20px 60px rgba(12, 38, 58, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(12, 127, 176, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(46, 183, 152, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(12, 127, 176, 0.22);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(11, 39, 56, 0.08);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.section {
  padding: 54px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  padding-top: 46px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  max-width: 14ch;
}

.hero-text,
.section-heading p,
.info-card p,
.workflow-card p,
.shot-card figcaption,
.privacy-points p,
.support-copy p,
.support-meta,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 58ch;
  margin-top: 22px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  box-shadow: 0 18px 34px rgba(12, 127, 176, 0.25);
}

.button-secondary {
  color: var(--brand-deep);
  border-color: rgba(12, 127, 176, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.trust-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 30px rgba(16, 42, 61, 0.07);
  font-weight: 700;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 670px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-primary {
  inset: 0 78px 80px 0;
}

.hero-card-floating {
  right: 0;
  bottom: 0;
  width: 270px;
  height: 585px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.problem-grid,
.workflow-grid,
.shot-grid {
  display: grid;
  gap: 22px;
}

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

.info-card,
.workflow-card,
.shot-card,
.support-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card,
.workflow-card,
.support-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.info-card h3,
.workflow-card h3,
.privacy-points h3,
.support-card h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

.workflow-card {
  position: relative;
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 252, 0.72));
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 22px;
  color: var(--brand-deep);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(12, 127, 176, 0.14), rgba(46, 183, 152, 0.18));
}

.shot-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.shot-card {
  padding: 16px;
  border-radius: 30px;
}

.shot-card img {
  border-radius: 22px;
  background: #f7fafc;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.shot-card figcaption {
  margin-top: 14px;
  font-size: 0.98rem;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #083f5a, #0c6a93 52%, #159d86 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 52, 78, 0.26);
}

.privacy-panel h2 {
  max-width: 11ch;
}

.privacy-points {
  display: grid;
  gap: 18px;
}

.privacy-points article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-points p,
.privacy-points h3 {
  color: #fff;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.support-button {
  min-width: 180px;
}

.support-meta {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero,
  .privacy-panel,
  .support-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-card-primary {
    inset: 0 90px 54px 0;
  }

  .hero-card-floating {
    width: 240px;
    height: 520px;
  }

  .problem-grid,
  .workflow-grid,
  .shot-grid,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--content-width));
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    overflow-x: auto;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    gap: 34px;
    padding-top: 18px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-card-primary {
    inset: 0 48px 60px 0;
  }

  .hero-card-floating {
    width: 190px;
    height: 414px;
  }

  .problem-grid,
  .workflow-grid,
  .shot-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .support-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
