/* Daymons — the landing page stylesheet.
   Same approach as the Hungarian site (hosting/styles.css): no framework, no
   build step, one stylesheet. The palette comes from the brand material in
   assets/Daymons/ — deep forest ground, one bright leaf accent, and a small
   set of metric colours that the app reuses. If the app's design tokens
   change, mirror them here so the site and the app speak the same language. */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-display: swap;
}

:root {
  /* Ground and surfaces. Near-black with a green cast, not neutral grey —
     that cast is what makes the lime read as "leaf" rather than "neon". */
  --forest: #08150c;
  --moss: #0f2214;
  --moss-soft: #12291a;
  --bark: #1b3623;

  /* The single accent. --lime carries text and marks on dark ground;
     --leaf is the deeper stop for gradients and for text on light ground,
     where --lime would fall under WCAG AA. */
  --lime: #9ce34d;
  --leaf: #63b32b;
  --leaf-deep: #3f7d1a;

  /* Metric accents — one per tracked area, used consistently in the app too.
     They are identity, not decoration: hydration is always the blue drop. */
  --water: #56c1f0;
  --night: #a9b6e8;
  --ember: #e0713f;

  --chalk: #eff6ec;
  --sage: #9db3a2;

  --shell: min(1160px, 100% - 2.5rem);
  --radius: 20px;
  --radius-sm: 12px;

  --step--1: clamp(0.86rem, 0.83rem + 0.14vw, 0.94rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4: clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  background: var(--forest);
  color: var(--chalk);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--lime); }

img {
  max-width: 100%;
  height: auto;
}

svg { display: block; }

/* Every referenced icon is a stroke drawing that takes the surrounding text
   colour. That is what lets one tile tint its icon blue for hydration and the
   next one keep it lime, without a second copy of the shape. */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.skip {
  position: absolute;
  inset-inline-start: -9999px;
}
.skip:focus {
  inset-inline-start: 1rem;
  inset-block-start: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--lime);
  color: var(--forest);
  border-radius: var(--radius-sm);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* -------------------------------------------------------------- masthead */

.masthead {
  position: sticky;
  inset-block-start: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--forest) 88%, transparent);
  border-block-end: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
/* app.js sets this once the page has scrolled — without it the header floats
   over the hero with no edge, and the nav links lose their footing. */
.masthead.is-stuck {
  border-block-end-color: var(--bark);
  backdrop-filter: blur(12px);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--chalk);
  text-decoration: none;
  font-weight: 800;
  font-size: var(--step-1);
  letter-spacing: 0.02em;
}
.wordmark svg { width: 2rem; height: 2rem; }

.masthead nav {
  margin-inline-start: auto;
  display: flex;
  gap: 1.5rem;
}
.masthead nav a {
  color: var(--sage);
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
}
.masthead nav a:hover { color: var(--chalk); }

@media (max-width: 860px) {
  .masthead nav { display: none; }
  .masthead__inner { justify-content: space-between; }
  .masthead .btn { margin-inline-start: auto; }
}

/* ----------------------------------------------------------------- button */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: var(--step--1);
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--lime {
  background: var(--lime);
  color: #08150c;
}
.btn--lime:hover { background: #aeea62; }

.btn--ghost {
  border-color: var(--bark);
  color: var(--chalk);
}
.btn--ghost:hover { border-color: var(--leaf); }

/* A store button that is not live yet. The state lives on the attribute, so
   turning the links on is a markup change with no CSS edit — see README. */
.btn[aria-disabled='true'] {
  opacity: 0.55;
  pointer-events: none;
}

/* ------------------------------------------------------------------- hero */

.hero {
  padding-block-start: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
/* A single soft light behind the hero, in the leaf colour. It replaces the
   photographic backgrounds of the brand posters: same warmth, none of the
   weight (the posters are ~140 KB each). */
.hero::before {
  content: '';
  position: absolute;
  inset-block-start: -30%;
  inset-inline-end: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(99, 179, 43, 0.18), transparent 62%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 1.25rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--bark);
  border-radius: 999px;
  color: var(--lime);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* The display treatment of the brand material: heavy, uppercase, tight.
   Inter at 800 is not a condensed face, so the tracking does the work. */
.hero h1 {
  font-size: var(--step-4);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero__lead {
  margin-block-start: 1.5rem;
  max-width: 46ch;
  color: var(--sage);
  font-size: var(--step-1);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 2rem;
}

.hero__note {
  margin-block-start: 1.75rem;
  max-width: 44ch;
  color: var(--sage);
  font-size: var(--step--1);
  border-inline-start: 2px solid var(--bark);
  padding-inline-start: 1rem;
}

/* ------------------------------------------------------------ phone mock */

/* The hero preview stays markup rather than a screenshot: it carries the
   Daymons wordmark, it animates, and it
   weighs nothing. The real screens are further down, in the #screens
   gallery — see .phone at the end of this file. */
.device {
  --tile-accent: var(--lime);
  position: relative;
  width: min(340px, 100%);
  margin-inline: auto;
  padding: 0.75rem;
  border: 1px solid var(--bark);
  border-radius: 44px;
  background: linear-gradient(180deg, #12291a, #0b1a10);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9);
}

.screen {
  border-radius: 34px;
  background: #0a1c11;
  padding: 1.25rem 1rem 0.75rem;
  display: grid;
  gap: 0.85rem;
}

.screen__head {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  text-align: center;
}
.screen__head svg { width: 1.6rem; height: 1.6rem; }
.screen__brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.screen__tag {
  color: var(--lime);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}
.screen__greet {
  margin-block-start: 0.35rem;
  color: var(--sage);
  font-size: 0.68rem;
  line-height: 1.35;
}

.ring {
  position: relative;
  justify-self: center;
  width: 150px;
  height: 150px;
}
.ring svg { width: 100%; height: 100%; }
.ring__track {
  fill: none;
  stroke: #16311d;
  stroke-width: 9;
}
.ring__arc {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 9;
  stroke-linecap: round;
  /* 2πr for r=62. The default is the FILLED state (86 of 100), so a page with
     no JavaScript shows the right number and the right arc. app.js resets it to
     empty and animates up — the motion is the enhancement, not the content. */
  stroke-dasharray: 389.6;
  stroke-dashoffset: 54.5;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ring__readout {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.ring__value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ring__label {
  color: var(--sage);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ring__note {
  color: var(--lime);
  font-size: 0.62rem;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.tile {
  border: 1px solid var(--bark);
  border-radius: 14px;
  background: #0e2415;
  padding: 0.5rem 0.35rem;
  text-align: center;
  display: grid;
  gap: 0.1rem;
  justify-items: center;
}
.tile__name {
  color: var(--sage);
  font-size: 0.56rem;
  letter-spacing: 0.03em;
}
.tile svg { width: 1rem; height: 1rem; }
.tile__value {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.tile__state {
  font-size: 0.52rem;
  color: var(--tile-accent);
}

.insight {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border: 1px solid var(--bark);
  border-radius: 14px;
  background: #0e2415;
  padding: 0.6rem;
}
.insight svg {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
}
.insight p {
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--chalk);
}
.insight b {
  display: block;
  color: var(--lime);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-block-end: 0.15rem;
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-block: 0.5rem 0.25rem;
  border-block-start: 1px solid var(--bark);
}
.tabbar span {
  text-align: center;
  font-size: 0.5rem;
  color: var(--sage);
  letter-spacing: 0.02em;
}
.tabbar span:first-child { color: var(--lime); }

/* --------------------------------------------------------- section heads */

.section-head { max-width: 62ch; margin-block-end: clamp(2rem, 4vw, 3rem); }
.section-head h2 {
  font-size: var(--step-3);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head h2 em {
  font-style: normal;
  color: var(--lime);
}
.section-head p {
  margin-block-start: 1rem;
  color: var(--sage);
  font-size: var(--step-1);
  line-height: 1.5;
}

/* -------------------------------------------------------------- pillars */

.pillars {
  display: grid;
  gap: 1rem;
  /* 300px keeps it at three columns on a desktop shell, so the six areas read
     as 3x2 rather than 4+2 with a ragged tail. */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pillar {
  border: 1px solid var(--bark);
  border-radius: var(--radius);
  background: var(--moss);
  padding: 1.5rem;
}
.pillar__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--bark);
  background: var(--moss-soft);
  margin-block-end: 1rem;
}
.pillar__icon svg { width: 1.35rem; height: 1.35rem; }
.pillar h3 {
  font-size: var(--step-1);
  margin-block-end: 0.5rem;
}
.pillar p {
  color: var(--sage);
  font-size: var(--step--1);
}

/* -------------------------------------------------------------- features */

.feature {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-block-start: 1px solid var(--bark);
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip > *:first-child { order: 2; }
}

.feature__tag {
  color: var(--lime);
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-block-end: 0.75rem;
}
.feature h3 {
  font-size: var(--step-2);
  margin-block-end: 1rem;
}
.feature p {
  color: var(--sage);
  max-width: 52ch;
}
.feature ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.feature li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--sage);
  font-size: var(--step--1);
}
.feature li::before {
  content: '';
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-block-start: 0.5rem;
  border-radius: 999px;
  background: var(--leaf);
}

.panel {
  border: 1px solid var(--bark);
  border-radius: var(--radius);
  background: var(--moss);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.panel__title {
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-block-end: 1rem;
}
.panel ol {
  margin: 0;
  padding-inline-start: 1.1rem;
  display: grid;
  gap: 0.75rem;
  color: var(--sage);
  font-size: var(--step--1);
}
 /* The bold lead-in gets its own line. Inline, a long one wraps and the
    sentence restarts mid-line, which reads as a layout accident. */
.panel ol strong {
  display: block;
  color: var(--chalk);
}

/* ---------------------------------------------------------------- trust */

.trust {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  background: var(--bark);
  border: 1px solid var(--bark);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust > div {
  background: var(--moss);
  padding: 1.5rem 1.25rem;
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}
.trust svg { width: 1.5rem; height: 1.5rem; }
.trust h3 {
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust p { color: var(--sage); font-size: var(--step--1); }

/* -------------------------------------------------------------- premium */

.plans {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.plan {
  border: 1px solid var(--bark);
  border-radius: var(--radius);
  background: var(--moss);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  align-content: start;
  gap: 1rem;
}
.plan--featured {
  border-color: var(--leaf);
  background: linear-gradient(180deg, #14301c, var(--moss));
}
.plan h3 {
  font-size: var(--step-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.plan__lead { color: var(--sage); font-size: var(--step--1); }
.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.plan li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: var(--step--1);
}
.plan li svg {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-block-start: 0.2rem;
}

/* -------------------------------------------------------------- download */

.download {
  border: 1px solid var(--bark);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #12291a, var(--moss));
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.download h2 {
  font-size: var(--step-3);
  text-transform: uppercase;
  font-weight: 800;
}
.download p {
  margin: 1rem auto 0;
  max-width: 52ch;
  color: var(--sage);
}
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-block-start: 2rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--bark);
  border-radius: 14px;
  background: #0b1c11;
  color: var(--chalk);
  text-decoration: none;
  text-align: start;
}
.store-badge svg { width: 1.6rem; height: 1.6rem; }
.store-badge small {
  display: block;
  font-size: 0.62rem;
  color: var(--sage);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.store-badge strong { font-size: var(--step-0); font-weight: 700; }
/* Not live yet. Turning a store link on is a markup change — remove the
   attribute and set the href; the dimming follows automatically. */
.store-badge[aria-disabled='true'] { opacity: 0.55; pointer-events: none; }

/* ------------------------------------------------------------------- faq */

.faq { display: grid; gap: 0.75rem; }
.faq details {
  border: 1px solid var(--bark);
  border-radius: var(--radius-sm);
  background: var(--moss);
  padding: 1.1rem 1.35rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--lime);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq p {
  margin-block-start: 0.85rem;
  color: var(--sage);
  font-size: var(--step--1);
}

/* ------------------------------------------------------------ disclaimer */

/* Not decoration and not optional: the app reports calories, weight and sleep,
   and every surface that does has to say plainly that it is not medical
   advice. Store review and liability both hang on it. */
.disclaimer {
  margin-block-start: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--bark);
  border-radius: var(--radius-sm);
  color: var(--sage);
  font-size: var(--step--1);
}

/* ---------------------------------------------------------------- footer */

.footer {
  border-block-start: 1px solid var(--bark);
  padding-block: 3rem;
  color: var(--sage);
  font-size: var(--step--1);
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer a { color: var(--sage); text-decoration: none; }
.footer a:hover { color: var(--lime); }
.footer__legal { margin-block-start: 2rem; max-width: 70ch; }

/* --------------------------------------------------------------- reveal */

/* The content is VISIBLE by default. Hiding is switched on by the script, on
   the <html> element — so if the script never runs (error, blocker, an old
   browser, a full-page render), the page still reads in full. Same pattern as
   the Hungarian site, and for the same reason: a decorative animation must not
   be able to take the content with it. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------ legal pages */

/* Ported from the Hungarian stylesheet with the Daymons palette. The measure is
   deliberately narrow: these are long documents and 74ch is where a paragraph
   stops being a wall. */

.legal {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 74ch;
}
.legal h1 {
  font-size: var(--step-3);
  text-transform: uppercase;
  font-weight: 800;
  margin-block-end: 0.7rem;
}
.legal .legal__meta {
  color: var(--sage);
  margin-block-end: 2.5rem;
  font-size: var(--step--1);
}
.legal h2 {
  font-size: var(--step-1);
  margin-block: 2.6rem 0.8rem;
  padding-block-start: 1.6rem;
  border-block-start: 1px solid var(--bark);
}
.legal h3 {
  font-size: var(--step-0);
  margin-block: 1.8rem 0.5rem;
}
.legal p,
.legal li { color: var(--sage); }
.legal p { margin-block-end: 1rem; }
.legal ul,
.legal ol {
  padding-inline-start: 1.3rem;
  margin-block-end: 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.legal strong { color: var(--chalk); }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-block-end: 1.4rem;
  font-size: var(--step--1);
}
.legal th,
.legal td {
  text-align: start;
  padding: 0.65rem 0.9rem;
  border-block-end: 1px solid var(--bark);
  vertical-align: top;
}
.legal th {
  color: var(--chalk);
  font-weight: 620;
  white-space: nowrap;
  width: 1%;
}
.legal td { color: var(--sage); }

/* The callout carries a warning, not an accent — it uses --ember rather than
   the brand lime, so a health notice never reads as a feature highlight. */
.legal .callout {
  border-inline-start: 3px solid var(--ember);
  background: color-mix(in srgb, var(--ember) 8%, transparent);
  padding: 1.1rem 1.3rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-block-end: 1.4rem;
}
.legal .callout p:last-child { margin-block-end: 0; }

.footer__base {
  border-block-start: 1px solid var(--bark);
  padding-block-start: 1.6rem;
  color: var(--sage);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: space-between;
}


/* ------------------------------------------------------------ app screens */

/* Készülék-keret a valódi app-képekhez — ugyanaz a felépítés, mint a magyar
   oldalon: telefon az egyik hasábban, a hozzá tartozó szöveg a másikban.
   A hero fölötte markupból rajzolt mock marad: az viseli a Daymons-szóvédjegyet
   (az app maga nem), és animál. */
.phone {
  position: relative;
  width: clamp(200px, 62vw, 252px);
  margin-inline: auto;
  border-radius: clamp(28px, 3.4vw, 38px);
  padding: clamp(7px, 0.9vw, 11px);
  background: linear-gradient(160deg, #1b3623, #0b1a10 60%);
  box-shadow:
    0 40px 70px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.phone::after {
  content: '';
  position: absolute;
  top: clamp(13px, 1.7vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 29%;
  height: clamp(13px, 1.5vw, 19px);
  border-radius: 999px;
  background: #050e08;
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(21px, 2.5vw, 29px);
}

.phone--tilt { transform: rotate(-2.2deg); }
.phone--tilt-r { transform: rotate(2.2deg); }

.screens__note {
  margin-block-start: clamp(2rem, 4vw, 3rem);
  color: var(--sage);
  font-size: var(--step--1);
  max-width: 62ch;
}
