/* 60 SECONDS - havefuncorp.fr/60-seconds */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@800&family=Inter:wght@400;600;700&display=swap");

:root {
  --black: #0b0b0a;
  --cream: #f2ecde;
  --cream-dim: #e7dfcb;
  --coral: #ff4438;
  --frame: 480px;
}

@media (min-width: 800px) {
  :root { --frame: 640px; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
}

body.sec-page {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--black);
  min-height: 100dvh;
  line-height: 1.5;
}

.sec-frame {
  max-width: var(--frame);
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--cream);
  padding:
    calc(28px + env(safe-area-inset-top, 0px))
    max(24px, env(safe-area-inset-right, 0px))
    calc(40px + env(safe-area-inset-bottom, 0px))
    max(24px, env(safe-area-inset-left, 0px));
}

.sec-crumb {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

.sec-crumb a,
.sec-crumb a:link,
.sec-crumb a:visited {
  color: var(--black);
  text-decoration: none;
  opacity: 0.45;
}

.sec-crumb a:hover,
.sec-crumb a:focus-visible {
  opacity: 1;
  color: var(--coral);
  text-decoration: none;
}

.sec-hero {
  text-align: center;
  margin-bottom: 28px;
}

.sec-hero--legal {
  margin-bottom: 8px;
}

.sec-langs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.sec-langs a,
.sec-langs a:link,
.sec-langs a:visited {
  color: var(--black);
  text-decoration: none;
  padding: 0.2em 0.35em;
  opacity: 0.45;
}

.sec-langs a:hover,
.sec-langs a:focus-visible {
  opacity: 1;
  color: var(--coral);
  text-decoration: none;
}

.sec-lang-sep {
  opacity: 0.35;
  margin: 0 0.15em;
  user-select: none;
}

.sec-lang-view .sec-page-title {
  margin-top: 16px;
}

.sec-mark,
.sec-mark:link,
.sec-mark:visited,
.sec-mark:hover {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
  border-radius: 25%;
  background: var(--black);
  line-height: 0;
}

.sec-mark img {
  width: min(180px, 52vw);
  height: auto;
  aspect-ratio: 1;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transform: scale(1.06);
}

.sec-mark--sm img {
  width: min(88px, 28vw);
}

.sec-title {
  margin: 16px 0 0;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.sec-lede {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  opacity: 0.72;
}

.sec-pitch {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0 0 24px;
}

.sec-stage {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}

.sec-phone {
  width: 180px;
  height: 368px;
  padding: 3px;
  border-radius: 28px;
  background: var(--coral);
  overflow: hidden;
}

.sec-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 25px;
  background: var(--black);
}

.store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}

.store-badge,
a.store-badge,
a.store-badge:link,
a.store-badge:visited,
a.store-badge:hover {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 240px;
  padding: 10px 20px 10px 16px;
  background: var(--black);
  color: var(--cream);
  text-decoration: none;
  box-sizing: border-box;
}

.store-badge--soon {
  opacity: 0.92;
}

.store-badge__logo {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-badge__caption {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.store-badge__name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--cream);
}

a.store-badge--apple .store-badge__name { color: #e7dfcb; }
a.store-badge--play .store-badge__name { color: #ff8a7a; }

.sec-legal-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.45;
  margin: 28px 0 12px;
  text-align: center;
}

.sec-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sec-link,
.sec-link:link,
.sec-link:visited,
.sec-link:hover {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--black);
  text-decoration: none;
  color: var(--black);
}

.sec-links .sec-link:last-child {
  border-bottom: 1px solid var(--black);
}

.sec-link:hover,
.sec-link:focus-visible {
  color: var(--coral);
  text-decoration: none;
}

.sec-link .label {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sec-link .sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.55;
  margin-top: 3px;
  color: var(--black);
}

.sec-link:hover .sub {
  color: inherit;
  opacity: 0.8;
}

.sec-page-title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 8px;
  text-align: center;
}

.sec-meta {
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.5;
}

.sec-card h2 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.sec-card h2:not(:first-child) {
  margin-top: 1.4rem;
}

.sec-card p,
.sec-card address {
  font-size: 0.92rem;
  margin: 0 0 0.75rem;
}

.sec-card address { font-style: normal; }

.sec-card p:last-child { margin-bottom: 0; }

.sec-card ul {
  font-size: 0.92rem;
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}

.sec-card li { margin-bottom: 0.35rem; }

.sec-card a,
.sec-card a:link,
.sec-card a:visited {
  color: var(--coral);
  text-decoration: none;
}

.sec-card a:hover { text-decoration: underline; }

.sec-footer-nav {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.sec-footer-nav a,
.sec-footer-nav a:link,
.sec-footer-nav a:visited {
  color: var(--black);
  text-decoration: none;
}

.sec-footer-nav a:hover {
  color: var(--coral);
  text-decoration: none;
}

.sec-footer-nav span {
  opacity: 0.35;
  margin: 0 0.4em;
}

.sec-story {
  margin: 28px 0 0;
}

.sec-story h2 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 14px;
  text-align: center;
}

.sec-steps {
  list-style: none;
  counter-reset: sec-step;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-steps li {
  counter-increment: sec-step;
  font-size: 0.92rem;
  line-height: 1.45;
  padding-left: 2.4em;
  position: relative;
}

.sec-steps li::before {
  content: counter(sec-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em;
  height: 1.6em;
  border: 1px solid var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-faq details {
  border-top: 1px solid var(--black);
}

.sec-faq details:last-child {
  border-bottom: 1px solid var(--black);
}

.sec-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.sec-faq details p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.78;
}

@media (prefers-reduced-motion: no-preference) {
  .sec-frame > * {
    animation: sec-rise 0.45s ease both;
  }

  .sec-hero { animation-delay: 0.04s; }
  .sec-pitch { animation-delay: 0.1s; }
  .store-badges { animation-delay: 0.14s; }
  .sec-stage { animation-delay: 0.18s; }
  .sec-legal-label,
  .sec-links { animation-delay: 0.22s; }

  @keyframes sec-rise {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
  }
}
