:root {
  color-scheme: light;
  --aura-ink: #22251f;
  --aura-muted: #5f655a;
  --aura-primary: #5a6052;
  --aura-primary-deep: #353a31;
  --aura-frost: #f6f3ed;
  --aura-paper: #fffdf8;
  --aura-mist: #e8ece5;
  --aura-coral: #c57667;
  --aura-lavender: #ddd8e8;
  --aura-shadow: rgba(53, 58, 49, 0.18);
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--aura-ink);
  background: var(--aura-paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--aura-ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  color: #fff;
  background: rgba(34, 37, 31, 0.52);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--aura-frost);
  color: var(--aura-primary-deep);
  border-radius: 8px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 132px 32px 72px;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.article-hero {
  min-height: 72vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 28, 23, 0.82), rgba(25, 28, 23, 0.46) 52%, rgba(25, 28, 23, 0.18)),
    linear-gradient(0deg, rgba(25, 28, 23, 0.62), rgba(25, 28, 23, 0.08) 46%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--aura-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 54px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.primary-link {
  color: var(--aura-primary-deep);
  background: var(--aura-frost);
  box-shadow: 0 16px 34px var(--aura-shadow);
}

.secondary-link {
  color: #fff;
  background: var(--aura-primary);
}

.intro-band,
.content-band,
.article-shell {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 64px 0;
}

.intro-band h2,
.section-heading h2,
.cluster-block h2,
.article-body h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0;
}

.intro-band p:last-child {
  margin: 0;
  color: var(--aura-muted);
  font-size: 17px;
}

.content-band {
  padding: 64px 0;
}

.section-heading {
  margin-bottom: 26px;
}

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

.article-card {
  min-height: 240px;
  padding: 22px;
  border-radius: 8px;
  background: var(--aura-frost);
}

.article-card span {
  display: block;
  color: var(--aura-coral);
  font-size: 12px;
  font-weight: 800;
}

.article-card h3 {
  margin: 14px 0 12px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
}

.article-card p {
  margin: 0;
  color: var(--aura-muted);
  font-size: 15px;
}

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

.cluster-block {
  padding: 28px;
  border-radius: 8px;
  background: #eef1ec;
}

.cluster-block p {
  color: var(--aura-muted);
}

.link-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.link-list li + li {
  margin-top: 10px;
}

.article-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 58px;
  padding: 64px 0;
}

.article-meta {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
  border-radius: 8px;
  background: var(--aura-frost);
}

.article-meta dl,
.article-meta dd {
  margin: 0;
}

.article-meta div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 96, 82, 0.16);
}

.article-meta dt {
  color: var(--aura-coral);
  font-size: 12px;
  font-weight: 800;
}

.article-meta dd {
  margin-top: 4px;
  color: var(--aura-muted);
  font-size: 14px;
}

.article-body {
  display: grid;
  gap: 52px;
}

.article-body section {
  max-width: 760px;
}

.article-body p {
  margin: 16px 0 0;
  font-size: 17px;
}

.check-list,
.mistake-list {
  margin: 22px 0 0;
  padding-left: 24px;
}

.check-list li,
.mistake-list li {
  padding-left: 6px;
  margin-top: 12px;
}

.app-bridge {
  padding: 30px;
  border-radius: 8px;
  background: var(--aura-mist);
}

.legal-hero,
.legal-shell {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  padding: 150px 0 48px;
}

.legal-hero h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.18;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--aura-muted);
  font-size: 17px;
}

.legal-updated {
  font-size: 14px !important;
}

.legal-shell {
  display: grid;
  gap: 32px;
  padding: 24px 0 76px;
}

.legal-shell section {
  padding: 28px;
  border-radius: 8px;
  background: var(--aura-frost);
}

.legal-shell h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
}

.legal-shell p {
  margin: 12px 0 0;
  color: var(--aura-muted);
  font-size: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

details {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--aura-frost);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--aura-muted);
  font-size: 16px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 32px;
  color: #fff;
  background: var(--aura-primary-deep);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-header--landing {
  color: var(--aura-ink);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(53, 58, 49, 0.08);
  box-shadow: 0 18px 44px rgba(53, 58, 49, 0.06);
}

.site-header--landing .brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.site-header--landing .brand-mark {
  display: none;
}

.site-header--landing .site-nav {
  margin-left: auto;
  margin-right: auto;
  color: #2c3029;
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--aura-primary-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(53, 58, 49, 0.18);
}

.landing-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 9%, rgba(235, 170, 145, 0.2), transparent 31%),
    linear-gradient(180deg, #fffdf8 0%, #f8f5ef 43%, #fffdf8 100%);
}

.landing-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.landing-hero {
  position: relative;
  padding: 106px 0 38px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 42px;
  min-height: clamp(620px, calc(100vh - 180px), 780px);
}

.landing-hero-copy h1 {
  margin: 0;
  max-width: 610px;
  font-size: clamp(48px, 5.6vw, 92px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: pre-line;
}

.landing-hero-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: #41463d;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.landing-button--primary {
  color: #fff;
  background: var(--aura-primary-deep);
  box-shadow: 0 18px 34px rgba(53, 58, 49, 0.22);
}

.landing-button--secondary {
  color: var(--aura-primary-deep);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(53, 58, 49, 0.28);
}

.landing-review {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  color: var(--aura-muted);
  font-size: 13px;
}

.landing-review span {
  color: #d99579;
  letter-spacing: 0.08em;
}

.landing-review strong {
  color: var(--aura-primary-deep);
}

.landing-review small {
  font-size: 13px;
}

.landing-hero-media {
  position: relative;
  min-height: 650px;
}

.landing-hero-3d {
  position: absolute;
  inset: -42px -34px -28px -34px;
  z-index: 3;
  width: calc(100% + 68px);
  height: calc(100% + 70px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.landing-3d-ready .landing-hero-3d {
  opacity: 1;
}

.landing-3d-ready .landing-hero-media .phone-frame,
.landing-3d-ready .landing-hero-media .hero-floating-image {
  opacity: 0;
  visibility: hidden;
}

.landing-3d-ready .landing-hero-orbit {
  opacity: 0.7;
}

.landing-hero-orbit {
  position: absolute;
  z-index: 1;
  inset: 44px 0 16px 84px;
  border-radius: 52% 48% 45% 55%;
  background:
    radial-gradient(circle at 55% 46%, rgba(250, 215, 200, 0.82), rgba(247, 199, 178, 0.52) 40%, transparent 70%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.7), rgba(232, 236, 229, 0.44));
}

.phone-frame {
  position: absolute;
  z-index: 2;
  margin: 0;
  width: min(285px, 34vw);
  aspect-ratio: 9 / 19.5;
  padding: 12px;
  border: 8px solid #181a18;
  border-radius: 46px;
  background: #111;
  box-shadow: 0 30px 80px rgba(53, 58, 49, 0.28);
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
}

.phone-frame figcaption,
.phone-speaker {
  position: absolute;
}

.phone-frame figcaption {
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(34, 37, 31, 0.62);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}

.phone-speaker {
  top: 11px;
  left: 50%;
  z-index: 4;
  width: 82px;
  height: 24px;
  border-radius: 999px;
  background: #0b0d0d;
  transform: translateX(-50%);
}

.phone-frame--front {
  left: 26px;
  top: 40px;
  transform: rotate(-6deg);
}

.phone-frame--back {
  right: 44px;
  top: 18px;
  transform: rotate(5deg);
}

.phone-frame--hero {
  left: 50%;
  top: 24px;
  width: min(330px, 39vw);
  transform: translateX(-46%) rotate(4deg);
}

.hero-before-after-card {
  position: absolute;
  z-index: 4;
  top: 88px;
  right: -4px;
  width: 288px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 54px rgba(53, 58, 49, 0.2);
  transform: rotate(7deg);
  backdrop-filter: blur(18px);
}

.hero-ba-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--aura-primary-deep);
  font-size: 12px;
  font-weight: 900;
}

.hero-ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.hero-before-after-card figure {
  position: relative;
  height: 154px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f5eee7;
}

.hero-before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-before-after-card figure span {
  position: absolute;
  z-index: 1;
  left: 8px;
  top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(53, 58, 49, 0.68);
  font-size: 10px;
  font-weight: 900;
}

.hero-before-after-card figure:last-child span {
  background: #e39b7d;
}

.hero-before-after-card p {
  margin: 10px 2px 0;
  color: var(--aura-primary-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-floating-image {
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 194px;
  object-fit: cover;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(53, 58, 49, 0.22);
}

.hero-floating-image--top {
  top: 72px;
  right: -8px;
  transform: rotate(12deg);
}

.hero-floating-image--bottom {
  left: 420px;
  bottom: 24px;
  transform: rotate(-9deg);
}

.landing-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(90, 96, 82, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 20px 46px rgba(53, 58, 49, 0.08);
  backdrop-filter: blur(18px);
}

.landing-proof li {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 18px 24px;
}

.landing-proof li + li {
  border-left: 1px solid rgba(90, 96, 82, 0.12);
}

.landing-proof strong,
.landing-proof span:last-child {
  display: block;
}

.landing-proof strong {
  font-size: 14px;
}

.landing-proof span:last-child {
  grid-column: 2;
  color: var(--aura-muted);
  font-size: 12px;
  line-height: 1.35;
}

.landing-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #de8f73;
}

.landing-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.landing-section {
  padding: 78px 0;
}

.landing-section h2,
.landing-final-cta h2 {
  margin: 0;
  color: var(--aura-ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.28;
  text-align: center;
  letter-spacing: 0;
}

.landing-section-heading {
  text-align: center;
}

.landing-section-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--aura-muted);
  font-size: 16px;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.landing-feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 590px;
  padding: 24px 24px 0;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 60px rgba(53, 58, 49, 0.08);
  overflow: hidden;
}

.landing-feature-copy h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.landing-feature-copy p {
  margin: 0;
  color: var(--aura-muted);
  font-size: 14px;
  line-height: 1.65;
}

.landing-feature-media {
  align-self: end;
  justify-self: center;
  width: min(100%, 218px);
  height: 390px;
  margin-top: 22px;
  border: 7px solid #191b19;
  border-bottom: 0;
  border-radius: 38px 38px 0 0;
  background: #111;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(53, 58, 49, 0.18);
}

.landing-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.landing-comparison {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(246, 243, 237, 0.7));
}

.comparison-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 980px;
  margin-top: 34px;
}

.comparison-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  align-items: center;
  gap: 18px;
  min-height: 430px;
  padding: 24px;
  border-radius: 14px;
  background: #fffaf3;
  box-shadow: 0 24px 60px rgba(53, 58, 49, 0.08);
  overflow: hidden;
}

.comparison-card-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--aura-primary-deep);
  font-size: 12px;
  font-weight: 900;
}

.comparison-card-copy h3 {
  margin: 12px 0 0;
  color: var(--aura-ink);
  font-size: 22px;
  line-height: 1.35;
}

.comparison-card-copy p {
  margin: 8px 0 0;
  color: var(--aura-muted);
  font-size: 14px;
  line-height: 1.65;
}

.comparison-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
}

.comparison-card figure {
  position: relative;
  height: 360px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f7efe7;
}

.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.comparison-card figure span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(53, 58, 49, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.comparison-card figure:last-child span {
  left: auto;
  right: 18px;
  background: #e39b7d;
}

.comparison-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 -28px;
  border-radius: 999px;
  background: #fff;
  color: var(--aura-primary-deep);
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(53, 58, 49, 0.14);
}

.landing-trust {
  padding-top: 34px;
}

.landing-trust-panel {
  padding: 46px 42px;
  border: 1px solid rgba(90, 96, 82, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 24px 60px rgba(53, 58, 49, 0.07);
}

.landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.landing-trust-grid article {
  display: flex;
  gap: 18px;
  min-height: 126px;
  padding: 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fffdf8, #fff4ed);
  border: 1px solid rgba(227, 155, 125, 0.18);
}

.landing-trust-grid h3 {
  margin: 0;
  font-size: 18px;
}

.landing-trust-grid p {
  margin: 8px 0 0;
  color: var(--aura-muted);
  font-size: 14px;
  line-height: 1.65;
}

.landing-final-cta {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 34px;
  padding: 38px 56px;
  border-radius: 24px;
  background: linear-gradient(105deg, #ffe4d7, #ffc3a9);
  overflow: hidden;
}

.landing-final-cta img {
  width: 260px;
  height: 260px;
  border: 7px solid #191b19;
  border-radius: 38px;
  object-fit: cover;
  object-position: top center;
  transform: rotate(-7deg);
  box-shadow: 0 22px 48px rgba(53, 58, 49, 0.2);
}

.landing-final-cta h2 {
  text-align: left;
}

.landing-final-cta p {
  margin: 14px 0 0;
  color: #4b4039;
  font-size: 17px;
}

.site-footer--landing {
  color: var(--aura-ink);
  background: #fffdf8;
  border-top: 1px solid rgba(90, 96, 82, 0.1);
}

.site-footer--landing p {
  color: var(--aura-muted);
}

.landing-motion-ready [data-animate]:not(.hero-floating-image) {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

.landing-motion-ready [data-animate]:not(.hero-floating-image).is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-motion-ready .hero-floating-image[data-animate] {
  opacity: 0;
  transition: opacity 0.72s ease 0.26s;
}

.landing-motion-ready .hero-floating-image[data-animate].is-visible {
  opacity: 1;
}

.landing-motion-ready .phone-frame--front {
  animation: landing-phone-front 7.6s ease-in-out 0.9s infinite;
}

.landing-motion-ready .phone-frame--back {
  animation: landing-phone-back 8.4s ease-in-out 1.1s infinite;
}

.landing-motion-ready .phone-frame--hero {
  animation: landing-phone-hero 7.8s ease-in-out 0.9s infinite;
}

.landing-motion-ready .hero-before-after-card {
  animation: landing-before-after-card 7s ease-in-out 1.15s infinite;
}

.landing-motion-ready .hero-floating-image--top {
  animation: landing-float-top 6.8s ease-in-out 1.2s infinite;
}

.landing-motion-ready .hero-floating-image--bottom {
  animation: landing-float-bottom 7.2s ease-in-out 1.4s infinite;
}

@keyframes landing-phone-front {
  0%,
  100% {
    transform: rotate(-6deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-4.5deg) translate3d(0, -12px, 0);
  }
}

@keyframes landing-phone-back {
  0%,
  100% {
    transform: rotate(5deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(6.2deg) translate3d(0, 10px, 0);
  }
}

@keyframes landing-phone-hero {
  0%,
  100% {
    transform: translateX(-46%) rotate(4deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateX(-46%) rotate(5deg) translate3d(0, -12px, 0);
  }
}

@keyframes landing-before-after-card {
  0%,
  100% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(5.5deg) translate3d(6px, -10px, 0);
  }
}

@keyframes landing-float-top {
  0%,
  100% {
    transform: rotate(12deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(10deg) translate3d(4px, -12px, 0);
  }
}

@keyframes landing-float-bottom {
  0%,
  100% {
    transform: rotate(-9deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-7deg) translate3d(-4px, 11px, 0);
  }
}

@media (hover: hover) {
  .landing-button,
  .header-cta,
  .landing-feature-card,
  .landing-trust-grid article,
  .comparison-card {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }

  .landing-button:hover,
  .header-cta:hover {
    transform: translateY(-2px);
  }

  .landing-feature-card:hover,
  .landing-trust-grid article:hover,
  .comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(53, 58, 49, 0.12);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: 720px;
    padding: 178px 24px 54px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .intro-band,
  .article-shell,
  .cluster-grid {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-meta {
    position: static;
  }

  .intro-band,
  .content-band,
  .article-shell {
    width: min(100% - 32px, var(--content-width));
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .landing-motion-ready [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .landing-hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 26px;
  }

  .landing-hero-media {
    min-height: 580px;
  }

  .phone-frame {
    width: min(250px, 35vw);
  }

  .phone-frame--back {
    right: 14px;
  }

  .phone-frame--hero {
    width: min(300px, 40vw);
  }

  .hero-floating-image--bottom {
    left: 330px;
  }

  .hero-before-after-card {
    right: -6px;
    width: 254px;
  }

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

  .landing-feature-card {
    min-height: 540px;
  }
}

@media (max-width: 860px) {
  .site-header--landing {
    position: sticky;
    flex-direction: row;
    align-items: center;
    padding: 14px 18px;
  }

  .site-header--landing .brand {
    font-size: 22px;
  }

  .site-header--landing .site-nav {
    display: none;
  }

  .site-header--landing .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .landing-shell {
    width: min(100% - 32px, 1240px);
  }

  .landing-hero {
    padding: 44px 0 24px;
    min-height: auto;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landing-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .landing-hero-copy p {
    font-size: 17px;
  }

  .landing-button {
    flex: 1 1 180px;
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  .landing-hero-media {
    min-height: 530px;
    margin-top: 6px;
  }

  .landing-hero-3d {
    inset: -18px -8px -18px -8px;
    width: calc(100% + 16px);
    height: calc(100% + 36px);
  }

  .landing-hero-orbit {
    inset: 30px 0 20px 20px;
  }

  .phone-frame {
    width: min(218px, 47vw);
    border-width: 6px;
    border-radius: 36px;
    padding: 8px;
  }

  .phone-frame img {
    border-radius: 26px;
  }

  .phone-speaker {
    width: 62px;
    height: 18px;
  }

  .phone-frame--front {
    left: 4px;
    top: 28px;
  }

  .phone-frame--back {
    right: 2px;
    top: 0;
  }

  .phone-frame--hero {
    left: 44%;
    top: 20px;
    width: min(230px, 58vw);
  }

  .hero-before-after-card {
    top: 48px;
    right: -4px;
    width: 190px;
    padding: 9px;
    border-radius: 18px;
  }

  .hero-before-after-card figure {
    height: 104px;
    border-radius: 12px;
  }

  .hero-before-after-card p {
    font-size: 10px;
  }

  .hero-floating-image {
    width: 112px;
    height: 146px;
    border-radius: 20px;
  }

  .hero-floating-image--top {
    top: 46px;
    right: 0;
  }

  .hero-floating-image--bottom {
    left: 50%;
    bottom: 0;
  }

  .landing-proof {
    grid-template-columns: 1fr 1fr;
  }

  .landing-proof li {
    min-height: 76px;
    padding: 16px;
  }

  .landing-proof li + li {
    border-left: 0;
  }

  .landing-proof li:nth-child(even) {
    border-left: 1px solid rgba(90, 96, 82, 0.12);
  }

  .landing-proof li:nth-child(n + 3) {
    border-top: 1px solid rgba(90, 96, 82, 0.12);
  }

  .landing-section {
    padding: 56px 0;
  }

  .landing-feature-grid,
  .landing-trust-grid,
  .landing-final-cta {
    grid-template-columns: 1fr;
  }

  .landing-feature-card {
    min-height: 520px;
  }

  .landing-feature-media {
    height: 360px;
  }

  .comparison-rail {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }

  .comparison-visuals {
    grid-template-columns: 1fr;
  }

  .comparison-card figure {
    height: 280px;
  }

  .comparison-arrow {
    margin: -28px auto;
    transform: rotate(90deg);
  }

  .landing-trust-panel {
    padding: 34px 18px;
  }

  .landing-trust-grid article {
    min-height: auto;
  }

  .landing-final-cta {
    gap: 22px;
    padding: 30px 20px;
    border-radius: 18px;
  }

  .landing-final-cta img {
    justify-self: center;
    width: 210px;
    height: 230px;
  }

  .landing-final-cta h2 {
    text-align: center;
  }

  .landing-final-cta p {
    text-align: center;
  }

  .landing-final-cta .landing-actions {
    justify-content: center;
  }

  .site-footer--landing nav {
    flex-wrap: wrap;
  }
}
