:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-strong: #eef6fb;
  --text: #102033;
  --muted: #5e6b7a;
  --line: #d8e1ea;
  --brand: #0677c8;
  --brand-dark: #064f91;
  --teal: #06a7a7;
  --success: #15803d;
  --shadow: 0 18px 50px rgba(16, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpRaised {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(var(--raised-offset, -28px));
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(var(--raised-offset, -28px));
  }
  50% {
    transform: translateY(calc(var(--raised-offset, -28px) - 10px));
  }
}

@keyframes softSheen {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }
  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 248, 251, 0.88);
  border-bottom: 1px solid rgba(216, 225, 234, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 760;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand .brand-logo-image {
  width: auto;
  height: 42px;
  border-radius: 0;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 820;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 620;
}

.button,
button.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(6, 119, 200, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--brand-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6, 119, 200, 0.24);
}

.button.secondary {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--line);
  box-shadow: none;
}

.button::after {
  position: absolute;
  inset: -45% auto -45% -60%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  content: "";
  pointer-events: none;
}

.hero,
.section,
.policy,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: center;
  padding: 78px 0 54px;
}

.hero h1,
.policy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-note,
.small-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #eef8ff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 148px;
  height: 148px;
  margin-bottom: 22px;
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(6, 79, 145, 0.22);
}

.hero-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-card dt {
  color: var(--muted);
}

.hero-card dd {
  margin: 0;
  font-weight: 760;
}

.company-hero {
  display: block;
  max-width: 980px;
  min-height: 560px;
  margin-left: max(16px, calc((100% - 1120px) / 2));
  padding: 118px 0 74px;
}

.app-hero {
  display: block;
  padding: 102px 0 44px;
}

.app-hero > div {
  max-width: 960px;
}

.app-hero p {
  max-width: 780px;
}

.company-hero h1 {
  max-width: 880px;
}

.company-hero p {
  max-width: 760px;
}

.company-visual {
  display: grid;
  gap: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 167, 167, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef6fb);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-showcase {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border-radius: 8px;
  background: transparent;
}

.company-visual h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.company-visual p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.lab-mark-large {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-dark), var(--teal));
  color: #fff;
  font-size: 2rem;
  font-weight: 840;
  box-shadow: 0 18px 44px rgba(6, 79, 145, 0.22);
}

.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.app-card-copy > p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.app-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-card-head h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.app-card-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 660;
}

.app-icon-sm {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(6, 79, 145, 0.18);
}

.device-stack,
.screenshot-band {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.device-stack {
  min-height: 360px;
  overflow: visible;
}

.screenshot-band {
  padding-top: 22px;
  padding-bottom: 34px;
}

.phone-shot {
  width: min(190px, 28vw);
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.18);
}

.device-stack .phone-shot {
  width: min(180px, 22vw);
}

.home-device-stack {
  min-height: 500px;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding-right: 10px;
}

.phone-cutout {
  display: block;
  width: min(222px, 15.5vw);
  height: auto;
  border-radius: 30px;
  filter: drop-shadow(0 22px 34px rgba(16, 32, 51, 0.18));
}

.phone-cutout.raised {
  --raised-offset: -28px;
  transform: translateY(var(--raised-offset));
}

.phone-shot.raised {
  --raised-offset: -28px;
  transform: translateY(var(--raised-offset));
}

.app-summary {
  align-self: stretch;
}

.section {
  padding: 52px 0;
}

.section h2,
.policy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.support-card,
.policy-card,
.step-card,
.pricing-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.support-card:hover,
.policy-card:hover,
.step-card:hover,
.pricing-card:hover,
.app-card:hover,
.report-preview:hover,
.browser-preview:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 119, 200, 0.28);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.12);
}

.card h3,
.support-card h3,
.policy-card h3,
.step-card h3,
.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.card p,
.support-card p,
.policy-card p,
.step-card p,
.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.step-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--brand);
  font-weight: 840;
}

.sample-report {
  align-items: center;
}

.report-preview {
  display: block;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.report-preview:hover {
  text-decoration: none;
}

.report-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(6, 119, 200, 0.45);
  box-shadow: 0 18px 44px rgba(6, 119, 200, 0.13);
}

.price {
  margin: 12px 0 10px;
  color: var(--text);
  font-size: 2.1rem;
  font-weight: 840;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 680;
}

.plan-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e6f6ff;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 820;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pc-manager-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: center;
}

.browser-preview {
  display: block;
  margin: 0;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.browser-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

.notice {
  padding: 18px 20px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #7c2d12;
}

.policy {
  max-width: 900px;
  padding: 58px 0 72px;
}

.policy h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.policy .updated {
  margin: 16px 0 32px;
  color: var(--muted);
}

.policy-card {
  margin: 18px 0;
}

.policy ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-box {
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #fff;
  border: 0;
}

.contact-box p,
.contact-box a {
  color: rgba(255, 255, 255, 0.9);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 720;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 54vh;
  place-items: center;
  padding: 58px 0 72px;
}

.not-found-card {
  max-width: 680px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.not-found-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.not-found-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .app-card,
  .support-layout,
  .pc-manager-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
    gap: 28px;
  }

  .hero-card img {
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }

  .brand .brand-logo-image {
    height: 38px;
  }

  .company-hero {
    min-height: auto;
    margin: 0 auto;
    padding-top: 46px;
  }

  .app-hero {
    padding-top: 46px;
  }

  .device-stack {
    min-height: auto;
  }

  .device-stack,
  .screenshot-band {
    gap: 10px;
  }

  .phone-shot,
  .device-stack .phone-shot {
    width: min(29.5vw, 150px);
    border-radius: 22px;
  }

  .phone-shot.raised {
    --raised-offset: -16px;
    transform: translateY(var(--raised-offset));
  }

  .home-device-stack {
    min-height: auto;
    justify-content: center;
    gap: 14px;
    padding: 8px 0 0;
  }

  .phone-cutout {
    width: min(42vw, 178px);
    border-radius: 22px;
  }

  .phone-cutout.raised {
    --raised-offset: -12px;
  }

  .grid,
  .timeline-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: fadeUp 520ms ease both;
  }

  .hero > *,
  .section h2,
  .section-intro,
  .policy h1,
  .policy .updated,
  .app-card,
  .company-visual,
  .policy-card,
  .support-card,
  .card,
  .step-card,
  .pricing-card,
  .report-preview,
  .browser-preview,
  .pc-manager-feature > div {
    animation: fadeUp 680ms ease both;
  }

  .hero > *:nth-child(2),
  .app-card,
  .browser-preview {
    animation-delay: 110ms;
  }

  .grid > *:nth-child(2),
  .timeline-grid > *:nth-child(2),
  .pricing-grid > *:nth-child(2),
  .split > *:nth-child(2) {
    animation-delay: 90ms;
  }

  .grid > *:nth-child(3),
  .timeline-grid > *:nth-child(3),
  .pricing-grid > *:nth-child(3) {
    animation-delay: 170ms;
  }

  .screenshot-band .phone-shot,
  .device-stack .phone-shot {
    animation: fadeUp 720ms ease both;
  }

  .screenshot-band .phone-shot.raised,
  .device-stack .phone-shot.raised,
  .phone-cutout.raised {
    animation: fadeUpRaised 720ms ease both, phoneFloat 5.6s ease-in-out 1.2s infinite;
  }

  .button:hover::after {
    animation: softSheen 900ms ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
