:root {
  --bg: #f4faf6;
  --bg-deep: #edf8f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(18, 55, 34, 0.12);
  --text: #163122;
  --muted: #557264;
  --green: #2eb86f;
  --green-deep: #178450;
  --water: #3794e0;
  --shadow: 0 28px 80px rgba(23, 67, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1360px;
  --header-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 184, 111, 0.14), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(55, 148, 224, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fcf9 0%, var(--bg) 42%, #eff8f2 100%);
  font-family: "SF Pro Text", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
summary {
  font: inherit;
}

.site-shell,
.legal-shell {
  position: relative;
  min-height: 100svh;
  padding-top: 0;
  transition: padding-top 220ms ease;
}

body.has-floating-header .site-shell,
body.has-floating-header .legal-shell {
  padding-top: var(--header-offset);
}

.site-header,
.legal-header,
.section,
.site-footer,
.legal-main {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.site-header,
.legal-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 10px;
  transition: padding 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  border-bottom: 1px solid transparent;
}

.home-page .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home-page .hero {
  padding-top: 112px;
}

.site-header::before,
.legal-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-floating,
.legal-header.is-floating {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  padding-top: 10px;
  padding-bottom: 8px;
  border-color: rgba(18, 55, 34, 0.1);
  box-shadow: 0 12px 32px rgba(23, 67, 42, 0.08);
}

.site-header.is-floating::before,
.legal-header.is-floating::before {
  opacity: 1;
  border-bottom-color: rgba(18, 55, 34, 0.1);
  background: rgba(244, 250, 246, 0.8);
  backdrop-filter: blur(18px);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--green) 0%, #2f9fdf 100%);
  box-shadow: 0 12px 24px rgba(30, 112, 72, 0.16);
  white-space: nowrap;
}

.header-menu {
  display: none;
  position: relative;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(18, 55, 34, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(18, 55, 34, 0.82);
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(18, 55, 34, 0.1);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(18, 55, 34, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(18, 55, 34, 0.14);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(47, 159, 223, 0.5);
  outline-offset: 2px;
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(47, 159, 223, 0.4);
  box-shadow: 0 12px 28px rgba(47, 159, 223, 0.16);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(240px, calc(100vw - 24px));
  padding: 12px;
  border: 1px solid rgba(18, 55, 34, 0.08);
  border-radius: 18px;
  background: rgba(251, 253, 252, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu-nav {
  display: grid;
  gap: 2px;
}

.mobile-menu-nav a {
  padding: 10px 4px;
  color: var(--text);
}

.mobile-lang-switch {
  margin-top: 10px;
  width: 100%;
  justify-content: space-between;
}

.mobile-lang-switch .lang-button {
  flex: 1 1 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-deep);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid rgba(18, 55, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--green) 0%, #2f9fdf 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(46, 184, 111, 0.18);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: "SF Pro Rounded", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand-copy span,
.text-link,
.button-note,
.site-footer,
.hero-body,
.section-intro p,
.feature-block p,
.rail-item p,
.philosophy-copy p,
.closing-panel p,
.legal-intro p,
.legal-body p {
  color: var(--muted);
}

.text-link {
  font-size: 0.95rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 28px max(24px, calc((100vw - var(--content)) / 2)) 96px;
  min-height: calc(100svh - 88px);
  overflow: clip;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 56px 0 40px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, rgba(23, 132, 80, 0.42), rgba(23, 132, 80, 0));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-intro h1 {
  margin: 0;
  font-family: "SF Pro Rounded", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.4rem, 10vw, 7rem);
  line-height: 0.92;
}

.hero-lead {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-body {
  max-width: 30rem;
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.9;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--green) 0%, #2f9fdf 100%);
  box-shadow: 0 22px 40px rgba(30, 112, 72, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(18, 55, 34, 0.12);
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 2% 8% 8%;
  border-radius: 48px;
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 184, 111, 0.14), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(55, 148, 224, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.orb-green {
  top: 8%;
  left: 6%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(46, 184, 111, 0.42), rgba(46, 184, 111, 0.04) 70%);
}

.orb-blue {
  right: 0;
  bottom: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(55, 148, 224, 0.35), rgba(55, 148, 224, 0.03) 72%);
}

.device-frame {
  position: relative;
  width: min(100%, 380px);
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(26, 36, 31, 0.95), rgba(48, 57, 51, 0.94));
  box-shadow: 0 44px 100px rgba(18, 43, 30, 0.24);
  transform: rotate(5deg) translateY(8px);
}

.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 36%;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: rgba(18, 22, 20, 0.96);
  transform: translateX(-50%);
}

.device-screen {
  min-height: 700px;
  padding: 30px 18px 18px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(46, 184, 111, 0.22), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(55, 148, 224, 0.22), transparent 28%),
    linear-gradient(180deg, #f6fbf8 0%, #eef7f1 100%);
}

.device-top,
.plant-panel,
.device-card,
.device-album {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 22px;
}

.mini-label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.mini-title {
  margin: 4px 0 0;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.mini-icon {
  border-radius: 10px;
}

.plant-panel {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border-radius: 20px;
}

.plant-photo,
.album-shot {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
}

.plant-photo {
  width: 62px;
  height: 62px;
}

.photo-a {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 35% 25%, #7ecb7e 0%, #3b8551 58%, #234d34 100%);
}

.photo-b {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 40% 30%, #a7d7a0 0%, #4f9660 56%, #224236 100%);
}

.plant-meta {
  min-width: 0;
}

.plant-name,
.plant-sub {
  margin: 0;
}

.plant-name {
  font-weight: 700;
}

.plant-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.plant-state {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(46, 184, 111, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
}

.plant-state-water {
  color: #9a5c12;
  background: rgba(245, 171, 67, 0.16);
}

.device-card {
  margin-top: 12px;
  padding: 18px 16px;
  border-radius: 20px;
}

.mini-text {
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.device-album {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 20px;
}

.album-shot {
  aspect-ratio: 1 / 1;
}

.shot-1 {
  background-image: linear-gradient(135deg, #9bd8a8, #2f7e58);
}

.shot-2 {
  background-image: linear-gradient(135deg, #bfe6c2, #579b65);
}

.shot-3 {
  background-image: linear-gradient(135deg, #a7d5f7, #4684c7);
}

.section {
  padding: 104px 0;
}

.home-page .section {
  padding: 86px 0;
}

.section h2,
.legal-intro h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.home-page .section h2 {
  letter-spacing: -0.05em;
}

.section-intro,
.philosophy-copy,
.closing-panel,
.legal-intro {
  max-width: 920px;
}

.section-essence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.essence-lines {
  display: grid;
  gap: 0;
  width: min(100%, 680px);
  margin: 0 auto;
  padding-top: 4px;
}

.essence-lines div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.essence-lines div:last-child {
  border-bottom: 1px solid var(--line);
}

.essence-lines p,
.philosophy-points p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.feature-rail {
  display: grid;
  gap: 0;
  width: min(100%, 760px);
}

.rail-item {
  padding: 18px 0 20px;
  border-top: 1px solid var(--line);
}

.rail-item:last-child {
  border-bottom: 1px solid var(--line);
}

.rail-item strong {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.section-philosophy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.philosophy-points {
  display: grid;
  gap: 0;
  width: min(100%, 680px);
  border-top: 1px solid var(--line);
}

.philosophy-points p {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.section-closing {
  padding-bottom: 32px;
}

.closing-panel,
.legal-body {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface-strong), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-block,
.philosophy-copy,
.section-intro {
  max-width: 760px;
}

.section-intro p,
.feature-block p,
.philosophy-copy p,
.closing-panel p {
  margin-left: auto;
  margin-right: auto;
}

.closing-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.closing-actions {
  justify-content: center;
}

.home-page .section-intro,
.home-page .philosophy-copy,
.home-page .closing-panel {
  max-width: 680px;
}

.home-page .section-intro p,
.home-page .philosophy-copy p,
.home-page .closing-panel p {
  max-width: 34rem;
}

.home-page .section-intro,
.home-page .philosophy-copy,
.home-page .closing-panel {
  position: relative;
}

.home-page .section-intro::before,
.home-page .philosophy-copy::before,
.home-page .closing-panel::before {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, rgba(18, 55, 34, 0.24), rgba(18, 55, 34, 0));
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(18, 55, 34, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: start;
  width: 100%;
  gap: 24px;
}

@media (min-width: 1200px) {
  .site-header,
  .legal-header,
  .section,
  .site-footer,
  .legal-main {
    width: min(calc(100% - 72px), var(--content));
  }

  .hero {
    padding-left: max(36px, calc((100vw - var(--content)) / 2));
    padding-right: max(36px, calc((100vw - var(--content)) / 2));
    padding-bottom: 96px;
  }

  .hero-body,
  .section-intro p,
  .feature-block p,
  .philosophy-copy p,
  .closing-panel p {
    max-width: 44rem;
  }

  .site-header,
  .legal-header,
  .site-footer {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}

.footer-meta p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-meta {
  display: flex;
  align-items: center;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 2.25rem;
}

.footer-brand-icon {
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(46, 184, 111, 0.16);
}

.footer-brand {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
  justify-self: center;
  width: max-content;
  min-height: 2.25rem;
  text-align: center;
  line-height: 2;
}

.footer-spacer {
  width: 124px;
  height: 1px;
}

.footer-links a {
  color: var(--muted);
  white-space: nowrap;
}

.footer-copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  line-height: 2;
}

.footer-links a:hover,
.text-link:hover {
  color: var(--green-deep);
}

.legal-main {
  width: min(calc(100% - 32px), 980px);
  padding: 34px 0 72px;
  text-align: left;
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.legal-intro h1 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
}

.legal-updated {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-body {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.legal-body-plain,
.faq-plain {
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.legal-body section {
  width: 100%;
  max-width: 760px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
}

.legal-body section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-body h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-family: "SF Pro Rounded", "Hiragino Sans", "Yu Gothic", sans-serif;
  text-align: left;
}

.legal-body p {
  margin: 0;
  max-width: none;
  text-align: left;
  font-size: 0.96rem;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .reveal-delay,
  .button,
  .device-frame {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 48px;
  }

  .hero-copy {
    max-width: none;
    padding: 24px 0 0;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 0;
  }

  .device-frame {
    width: min(100%, 340px);
    transform: none;
  }

  .site-footer {
    gap: 12px;
  }

  .site-header,
  .legal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-tools {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    gap: 12px 16px;
  }

  .header-store-link {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.92rem;
  }

  .legal-main {
    width: min(calc(100% - 32px), 980px);
  }

  .home-page .hero {
    padding-top: 104px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .legal-header,
  .section,
  .site-footer,
  .legal-main {
    width: min(calc(100% - 24px), var(--content));
  }

  .site-header,
  .legal-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 8px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
    align-items: center;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero {
    gap: 16px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 34px;
  }

  .home-page .hero {
    padding-top: 92px;
  }

  .hero-lead {
    font-size: 2.2rem;
    line-height: 1;
  }

  .hero-body {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .hero-copy::before {
    width: 44px;
    margin-bottom: 18px;
  }

  .hero-actions,
  .closing-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button,
  .header-store-link {
    width: 100%;
  }

  .device-frame {
    width: min(100%, 310px);
    padding: 12px;
    border-radius: 30px;
  }

  .device-screen {
    min-height: 560px;
    padding: 26px 14px 14px;
    border-radius: 22px;
  }

  .section {
    padding: 48px 0;
  }

  .home-page .section {
    padding: 54px 0;
  }

  .section h2,
  .legal-intro h1 {
    font-size: 1.78rem;
    line-height: 1.08;
  }

  .closing-panel {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .home-page .closing-panel {
    padding: 0;
    border-radius: 0;
  }

  .legal-main {
    width: min(calc(100% - 24px), 980px);
    padding: 22px 0 48px;
  }

  .footer-links {
    justify-content: center;
    gap: 14px;
    width: 100%;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-spacer {
    display: none;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .header-tools {
    width: auto;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .site-header,
  .legal-header {
    width: min(calc(100% - 20px), var(--content));
    gap: 12px;
    padding: 8px 0 6px;
  }

  .site-header.is-floating,
  .legal-header.is-floating {
    padding-top: 7px;
    padding-bottom: 5px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
    line-height: 1;
  }

  .home-page .philosophy-points,
  .home-page .essence-lines,
  .home-page .section-intro,
  .home-page .philosophy-copy,
  .home-page .closing-panel {
    width: 100%;
  }

  .site-nav,
  .header-store-link {
    display: none;
  }

  .header-tools > .lang-switch {
    display: inline-flex;
    padding: 3px;
  }

  .header-tools > .lang-switch .lang-button {
    padding: 7px 10px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .mobile-lang-switch {
    display: none;
  }

  .header-menu {
    display: block;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .legal-body h2 {
    font-size: 1rem;
  }
}
