:root {
  --ink: #0f1324;
  --ink-soft: #343d52;
  --muted: #566175;
  --background: #f4f4f2;
  --temmo-page-bg: #f4f4f2;
  --temmo-page-bg-gradient:
    radial-gradient(circle at 8% 0%, rgba(11, 107, 80, 0.11), transparent 26rem),
    radial-gradient(circle at 100% 18%, rgba(199, 141, 32, 0.11), transparent 24rem),
    linear-gradient(180deg, var(--temmo-page-bg) 0%, var(--temmo-page-bg) 42%, #f7f5ec 100%);
  --temmo-page-bg-mobile:
    radial-gradient(circle at 0% 0%, rgba(11, 107, 80, 0.11), transparent 22rem),
    var(--temmo-page-bg);
  --paper: #f7f2e8;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --line: rgba(15, 19, 36, 0.12);
  --line-strong: rgba(15, 19, 36, 0.18);
  --green: #0b6b50;
  --green-dark: #084c39;
  --green-deep: #053428;
  --green-soft: #e7f4ee;
  --gold: #c78d20;
  --gold-soft: #fff5d8;
  --danger-soft: #fff1df;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 54px rgba(18, 27, 43, 0.09);
  --shadow-strong: 0 28px 80px rgba(5, 52, 40, 0.18);
  --max: 1120px;
  --read: 72ch;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--temmo-page-bg-gradient);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--temmo-page-bg-gradient);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(11, 107, 80, 0.16);
}

body > main {
  min-height: 55svh;
  background: transparent;
}

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

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

button,
a,
summary {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(199, 141, 32, 0.9);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(calc(100% - 32px), 1180px);
  min-height: 68px;
  margin: 12px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  padding: 8px 10px 8px 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(18, 27, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 680;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 720;
}

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

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 820;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(11, 107, 80, 0.22);
  white-space: nowrap;
}

.primary-action {
  padding: 0 24px;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(11, 107, 80, 0.24);
}

.secondary-action {
  padding: 0 22px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 76, 57, 0.2);
}

.secondary-action.dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
}

.header-cta:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

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

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span,
.mobile-menu summary::before,
.mobile-menu summary::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.mobile-menu summary {
  flex-direction: column;
  gap: 4px;
}

.mobile-menu[open] summary span {
  opacity: 0;
}

.mobile-menu[open] summary::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] summary::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 4px;
  width: min(300px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-radius: 16px;
  padding: 0 14px;
  color: var(--ink-soft);
  font-weight: 760;
}

.mobile-menu-panel a:hover {
  color: var(--green-deep);
  background: var(--green-soft);
}

.hero,
.section,
.problem-section,
.final-cta {
  padding: 82px 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: -120px 0 auto;
  height: 720px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(11, 107, 80, 0.15), transparent 22rem),
    radial-gradient(circle at 78% 8%, rgba(255, 245, 216, 0.94), transparent 23rem);
}

.hero-inner,
.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
  align-items: center;
  gap: 70px;
}

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

.hero h1,
.section-heading h2,
.final-card h2,
.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 4.3rem;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.58;
}

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

.trust-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 740;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.problem-section,
.use-section,
.trust-section,
.final-cta {
  background: transparent;
}

.section-heading h2,
.final-card h2 {
  font-size: 2.85rem;
  line-height: 1.08;
}

.section-heading p,
.final-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.example-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.example-list article {
  position: relative;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 17px 18px 17px 52px;
  background: var(--surface-soft);
  color: var(--ink-soft);
}

.example-list .dot {
  position: absolute;
  left: 22px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px var(--gold-soft);
}

.example-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.example-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.steps-grid,
.use-grid,
.preview-grid {
  display: grid;
  gap: 16px;
}

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

.step-card,
.use-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(18, 27, 43, 0.055);
}

.step-card {
  position: relative;
  min-height: 226px;
  padding: 22px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 0.9rem;
  font-weight: 860;
}

.step-card strong,
.use-card h3 {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.22;
}

.step-card p,
.use-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.step-icon,
.mini-icon {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--green-soft);
}

.step-icon::before,
.step-icon::after,
.mini-icon::before,
.mini-icon::after {
  position: absolute;
  content: "";
}

.step-doc::before {
  inset: 13px 17px;
  border: 3px solid var(--green);
  border-radius: 5px;
}

.step-doc::after {
  left: 22px;
  right: 20px;
  top: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 8px 0 var(--green);
}

.step-form::before {
  left: 15px;
  right: 15px;
  top: 17px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 0 var(--green), 0 20px 0 var(--green);
}

.step-sign::before {
  left: 15px;
  top: 29px;
  width: 28px;
  height: 14px;
  border-bottom: 4px solid var(--green);
  border-left: 4px solid var(--green);
  border-radius: 0 0 0 12px;
  transform: rotate(-18deg);
}

.step-sign::after {
  right: 10px;
  bottom: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.step-trace::before {
  left: 13px;
  top: 16px;
  width: 30px;
  height: 24px;
  border: 3px solid var(--green);
  border-radius: 9px;
}

.step-trace::after {
  right: 10px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.use-section {
  background:
    linear-gradient(180deg, rgba(231, 244, 238, 0.56), rgba(244, 244, 242, 0)),
    var(--temmo-page-bg);
}

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

.use-card {
  min-height: 198px;
  padding: 22px;
}

.use-card img,
.mini-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.mini-icon.money {
  background: var(--gold-soft);
}

.mini-icon.money::before {
  inset: 17px 13px;
  border: 3px solid var(--gold);
  border-radius: 10px;
}

.mini-icon.money::after {
  left: 24px;
  top: 23px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.mini-icon.package::before {
  inset: 15px;
  border: 3px solid var(--green);
  border-radius: 9px;
}

.mini-icon.package::after {
  left: 18px;
  right: 18px;
  top: 28px;
  height: 3px;
  background: var(--green);
}

.mini-icon.phone::before {
  left: 19px;
  top: 10px;
  width: 18px;
  height: 34px;
  border: 3px solid var(--green);
  border-radius: 8px;
}

.mini-icon.phone::after {
  left: 26px;
  bottom: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.mini-icon.doc::before,
.mini-icon.receipt::before {
  inset: 13px 16px;
  border: 3px solid var(--green);
  border-radius: 7px;
}

.mini-icon.doc::after {
  left: 22px;
  right: 20px;
  top: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 8px 0 var(--green);
}

.mini-icon.receipt {
  background: var(--gold-soft);
}

.mini-icon.receipt::before {
  border-color: var(--gold);
}

.mini-icon.receipt::after {
  left: 21px;
  right: 21px;
  top: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 8px 0 var(--gold), 0 16px 0 var(--gold);
}

.mini-icon.client::before {
  left: 13px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 17px 0 0 rgba(11, 107, 80, 0.72);
}

.mini-icon.client::after {
  left: 11px;
  right: 11px;
  bottom: 13px;
  height: 15px;
  border-radius: 14px 14px 7px 7px;
  background: rgba(11, 107, 80, 0.24);
}

.app-preview-section {
  background: var(--paper);
}

.final-cta .section-kicker {
  color: var(--gold-soft);
}

.identity-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid rgba(11, 107, 80, 0.18);
  border-radius: 22px;
  padding: 18px;
  background: var(--green-soft);
}

.identity-note strong {
  color: var(--green-deep);
  font-size: 1.02rem;
}

.identity-note span {
  color: var(--ink-soft);
}

.legal-section li,
.faq-section li {
  position: relative;
  padding-left: 24px;
}

.legal-section li::before,
.faq-section li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.final-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 208, 96, 0.22), transparent 20rem),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  box-shadow: var(--shadow-strong);
}

.final-card h2 {
  max-width: 760px;
  color: #ffffff;
}

.final-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.final-primary {
  color: var(--green-deep);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.dark-note {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 24px;
  color: var(--muted);
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
  background: transparent;
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.legal-main {
  padding: 54px 24px 86px;
  background: transparent;
}

.legal-hero {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 50px 0 30px;
}

.legal-hero h1 {
  max-width: 880px;
  font-size: 3.25rem;
  line-height: 1.05;
}

.legal-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 248px) minmax(0, 1fr);
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 4px;
  max-height: calc(100dvh - 126px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(18, 27, 43, 0.06);
}

.legal-mobile-toc {
  display: none;
}

.legal-nav::before {
  display: block;
  padding: 6px 10px 8px;
  color: var(--green);
  content: "Sommaire";
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-nav a {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 13px;
  padding: 0 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 720;
}

.legal-nav a:hover {
  background: var(--green-soft);
  color: var(--green-deep);
}

.legal-content {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(18, 27, 43, 0.075);
  overflow: hidden;
}

.legal-section,
.faq-section,
.support-panel,
.team-note {
  padding: 30px 34px;
  background: transparent;
}

.legal-section,
.faq-section {
  border-bottom: 1px solid rgba(15, 19, 36, 0.09);
}

.legal-section:last-child,
.faq-section:last-child {
  border-bottom: 0;
}

.legal-section h2,
.faq-section h2,
.support-panel h2 {
  max-width: var(--read);
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-section h3 {
  max-width: var(--read);
  margin: 24px 0 8px;
  color: var(--green-deep);
  font-size: 1.03rem;
  line-height: 1.35;
}

.legal-section p,
.faq-section p,
.support-panel p,
.team-note p,
.legal-section li,
.faq-section li {
  max-width: var(--read);
  color: var(--muted);
}

.legal-section p,
.faq-section p,
.support-panel p,
.team-note p {
  margin: 12px 0 0;
}

.legal-section ul,
.faq-section ul {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 18px;
}

.info-grid div {
  border: 1px solid rgba(15, 19, 36, 0.08);
  border-radius: 17px;
  padding: 14px;
  background: var(--surface-soft);
}

.info-grid strong,
.info-grid span {
  display: block;
}

.info-grid strong {
  color: var(--green-deep);
  font-size: 0.86rem;
}

.info-grid span {
  margin-top: 6px;
  color: var(--ink-soft);
}

.warning-box,
.privacy-box {
  max-width: var(--read);
  margin-top: 18px;
  border: 1px solid rgba(11, 107, 80, 0.16);
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 720;
}

.warning-box {
  border-color: rgba(199, 141, 32, 0.28);
  background: var(--danger-soft);
  color: #604400;
}

.faq-list {
  margin-top: 16px;
}

.faq-list details {
  border: 1px solid rgba(15, 19, 36, 0.1);
  border-radius: 18px;
  background: var(--surface-soft);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 820;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  margin-left: auto;
  color: var(--green);
  content: "+";
  font-size: 1.15rem;
  font-weight: 860;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p,
.faq-list details ul {
  padding: 0 18px 18px;
  margin-top: 0;
}

.support-panel {
  margin: 26px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
}

.support-panel h2,
.support-panel p {
  color: #ffffff;
}

.support-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.support-panel .primary-action {
  width: fit-content;
  margin-top: 18px;
  color: var(--green-deep);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.team-note {
  background: var(--gold-soft);
}

.team-note strong {
  color: #604400;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

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

  .steps-grid,
  .use-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    display: none;
  }

  .legal-mobile-toc {
    display: block;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 32px rgba(18, 27, 43, 0.055);
  }

  .legal-mobile-toc summary {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 860;
    list-style: none;
  }

  .legal-mobile-toc summary::-webkit-details-marker {
    display: none;
  }

  .legal-mobile-toc summary::after {
    margin-left: auto;
    color: var(--green);
    content: "+";
    font-size: 1.15rem;
  }

  .legal-mobile-toc[open] summary::after {
    content: "-";
  }

  .legal-mobile-toc nav {
    display: grid;
    gap: 6px;
    padding: 0 10px 12px;
  }

  .legal-mobile-toc a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-radius: 14px;
    padding: 0 12px;
    color: var(--ink-soft);
    background: var(--surface-soft);
    font-weight: 740;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  html,
  body {
    background: var(--temmo-page-bg-mobile);
  }

  .site-header {
    width: min(calc(100% - 20px), 1180px);
    min-height: 64px;
    margin-top: 8px;
    border-radius: 26px;
    padding: 7px 8px 7px 10px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

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

  .header-cta {
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
  }

  .hero,
  .section,
  .problem-section,
  .final-cta {
    padding: 62px 20px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions,
  .store-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .section-heading h2,
  .final-card h2 {
    font-size: 2.1rem;
    line-height: 1.12;
  }

  .steps-grid,
  .use-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .use-card {
    min-height: 0;
  }

  .final-card {
    border-radius: 28px;
    padding: 32px 24px;
  }

  .legal-main {
    padding: 40px 20px 66px;
  }

  .legal-hero {
    padding: 30px 0 24px;
  }

  .legal-hero h1 {
    font-size: 2.18rem;
  }

  .legal-hero p {
    font-size: 1rem;
  }

  .legal-content {
    border-radius: 22px;
  }

  .legal-section,
  .faq-section {
    padding: 24px 20px;
  }

  .legal-section h2,
  .faq-section h2,
  .support-panel h2 {
    font-size: 1.28rem;
  }

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

  .support-panel {
    margin: 18px;
    padding: 24px 20px;
  }

  .site-footer {
    padding: 28px 20px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  .header-cta {
    padding: 0 11px;
    font-size: 0.84rem;
  }

  .hero,
  .section,
  .problem-section,
  .final-cta,
  .legal-main {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 2.38rem;
  }

  .legal-hero h1 {
    font-size: 1.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Landing refresh: coherent section headers and real app screenshots. */
.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(36px, 6vw, 76px);
}

.hero-screenshot {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 0;
}

.phone-frame {
  width: min(100%, 260px);
  overflow: hidden;
  border: 7px solid #111827;
  border-radius: 34px;
  padding: 6px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(15, 19, 36, 0.16);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: #f4f4f2;
}

.hero-phone-frame {
  width: min(100%, 330px);
  transform: rotate(1deg);
  box-shadow: 0 32px 88px rgba(5, 52, 40, 0.2);
}

.screenshot-source {
  max-width: 280px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  text-align: center;
}

.section-heading,
.section-heading.compact {
  display: block;
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.final-card h2 {
  font-size: clamp(2.25rem, 4.1vw, 3.25rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

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

.problem-examples article {
  min-height: 112px;
}

.steps-grid,
.use-grid {
  align-items: stretch;
}

.step-card,
.use-card {
  height: 100%;
}

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

.screenshot-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(14px, 2vw, 22px);
}

.screenshot-card {
  min-width: 0;
  text-align: center;
}

.screenshot-card .phone-frame {
  margin: 0 auto;
}

.screenshot-card:nth-child(even) {
  padding-top: 28px;
}

.screenshot-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.trust-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.trust-layout article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 27, 43, 0.055);
}

.trust-layout strong,
.trust-layout span {
  display: block;
}

.trust-layout strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.trust-layout span {
  margin-top: 8px;
  color: var(--muted);
}

.trust-layout .identity-note {
  grid-column: 1 / -1;
  border-color: rgba(11, 107, 80, 0.22);
  background: linear-gradient(135deg, #f2fbf6 0%, #fff9e8 100%);
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .hero-screenshot {
    justify-items: start;
  }

  .problem-examples,
  .use-grid,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-layout .identity-note {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .section-heading,
  .section-heading.compact {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
    line-height: 1.04;
  }

  .section-heading h2,
  .final-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
    line-height: 1.13;
  }

  .hero-screenshot {
    justify-items: center;
  }

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

  .screenshot-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 76vw);
    grid-template-columns: none;
    gap: 18px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .screenshot-card {
    scroll-snap-align: center;
  }

  .screenshot-card:nth-child(even) {
    padding-top: 0;
  }

  .screenshot-card .phone-frame {
    width: min(100%, 256px);
  }

  .problem-examples article {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .screenshot-grid {
    grid-auto-columns: minmax(210px, 80vw);
  }

  .phone-frame {
    border-width: 6px;
    border-radius: 30px;
  }

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