@import url("css/satoshi.css");

/* font carino font-family: "Syne"; */

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

:root {
  /* --bg: #0c0c0f;
  --surface: #13131a;
  --accent: #e8ff47;
  --accent2: #47c4ff;
  --text: #f0f0f0;
  --muted: #6b6b80; */
  --bg: #fafafa;
  --bg-trasp: rgba(0, 0, 0, 0.4);
  --surface: #eeeeee;
  --accent: #6bbb9f;
  --accent2: #9e82d6;
  --text: #1d1d1d;
  --text-light: #000;
  --muted: #9e9e9e;
  --darkgrey: #5c5a5a;
  --red: #e53935;
  --green: #4caf50;
  --nav-w: 150px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", sans-serif;
  font-weight: 400; /* ← aggiungi questa riga */
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

.thin {
  font-weight: 400;
}

/** ── RIGHT NAVBAR ─────────────────────────────── **/
nav {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--nav-w);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 100;
}

.nav-pill {
  display: none;
}
.nav-logo {
  position: absolute;
  top: 24px;
}
.nav-logo-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 22px 10px 20px;
  border-radius: 4px;
  transition:
    color 0.25s,
    font-size 0.2s,
    font-weight 0.2s;
  position: relative;
  width: 100%;
  text-align: right;
}
.nav-link.active {
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}
.nav-link:hover {
  color: var(--text);
  font-weight: 700;
}

.nav-lang {
  cursor: default;
  position: absolute;
  bottom: 45px;
}
.nav-lang span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 5px;
  cursor: default;
}

.nav-lang-btn {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.nav-lang-btn.active {
  color: var(--text);
  font-weight: 600;
}
.nav-lang-btn:hover {
  color: var(--text);
  font-weight: 700;
}

/** ── SECTIONS ────────────────────────────────── **/
section {
  min-height: 100vh;
  padding: 50px 20px 50px 120px;
  margin-right: var(--nav-w);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/** HOME **/
#home {
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(71, 196, 255, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 50% at 70% 80%,
      rgba(232, 255, 71, 0.06) 0%,
      transparent 60%
    ),
    var(--bg);
}

.home-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent2);
}

h1 {
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 700px;
}

h1 span {
  color: var(--accent);
}

.home-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-top: 10px;
  line-height: 1.7;
}

.home-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.btn {
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 255, 71, 0.3);
}

.btn-download {
  background: transparent;
  color: var(--text);
  padding: 14px 70px;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.btn-download:hover {
  background: var(--accent);
  border: none;
  color: var(--bg);
  transform: scale(1.1);
}
.btn-ghost {
  background: transparent;
}

/* popup versione beta */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-trasp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateY(16px);
  transition: transform 0.25s;
}
.popup-overlay.open .popup-box {
  transform: translateY(0);
}
.popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.powered-by {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/** MISSION **/
#mission {
  background: var(--bg);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.1;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.left {
  display: flex;
  justify-content: left;
  align-items: center;
}
.right {
  display: flex;
  justify-content: right;
}

.description {
  padding-left: 5px;
  font-size: 1.2rem;
}

p span {
  font-weight: 800;
}

section ul {
  margin: 5px 10px 25px;
}

/** PILLAR LAYOUT **/
.pillars-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100vh;
  width: 100%;
  margin: 80px 0px;
}

/** TOP ROOF CARD **/
/* .pillar-roof {

} */

.pillar-roof-triangle {
  background: var(--surface);
  clip-path: polygon(18% 100%, 0% 100%, 50% 0%, 100% 100%, 82% 100%);
  height: 100px;
  margin: 0 15px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.pillar-roof-inner {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}
.pillar-roof-inner span {
  font-weight: 800;
  font-size: 2rem;
}

.pillar-roof-rectangle {
  background: var(--surface);
  border-radius: 16px;
  height: 60px;
}

.pillar-roof-icon {
  font-size: 1.5rem;
}

/** BOTTOM THREE CARDS **/
.pillar-cards {
  display: flex;
  gap: 12px;
}

.pillar-card {
  flex: 1;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: default;
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pillar-cards:hover .pillar-card {
  flex: 0.6;
}

.pillar-cards:hover .pillar-card:hover {
  flex: 2;
}

.pillar-card h3 {
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  margin-bottom: 0;
  transition: margin-bottom 0.3s;
}

.pillar-card p {
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  color: var(--darkgrey);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s;
}

.pillar-card a {
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  color: var(--darkgrey);
  text-decoration: underline;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s;
}

.pillar-card:hover h3 {
  margin-bottom: 4px;
}

.pillar-card:hover p {
  max-height: 180px;
  overflow-y: auto;
  opacity: 1;
  margin-top: 10px;
}

.pillar-card:hover a {
  max-height: 180px;
  opacity: 1;
  margin-top: 10px;
}

/** INFO PILLARS **/
.info-pillars {
  margin: 10px 5px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.list-mission li {
  margin-left: 20px;
}

/** sApp **/
#sApp {
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 30%,
      rgba(232, 255, 71, 0.05) 0%,
      transparent 60%
    ),
    var(--bg);
}
.sapp-title-effect {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-bottom: 30px;
}
.sapp-title-effect h2 {
  margin-bottom: 0px;
}

.sApp-info {
  padding: 20px 22px;
}
.sApp-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.sApp-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

.super-plan {
  text-shadow: 0px 0px 20px rgba(102, 126, 234, 0.6);
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 10%,
    var(--accent) 20%,
    var(--accent) 30%,
    var(--accent) 40%,
    var(--accent2) 60%,
    var(--accent2) 70%,
    var(--accent2) 80%,
    var(--accent2) 90%,
    var(--accent2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
}

#plans {
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.plan {
  flex: 1;
  max-width: 600px;
  border: 3px solid var(--accent);
  border-radius: 20px;
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
}
.plan h3 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.plan-description {
  font-weight: 600;
  margin-bottom: 30px;
}

.vision {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff 0%, var(--accent) 200%);
}
.vision h3 {
  color: var(--accent);
}
.vision p {
  color: var(--accent);
}
p.vision-list {
  color: var(--accent);
  font-weight: 400;
  font-size: 0.8rem;
}

.creator {
  border-color: var(--accent2);
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 200%);
}
.creator h3 {
  color: var(--accent2);
}
.creator p {
  color: var(--accent2);
}
p.creator-list {
  color: var(--accent2);
  font-weight: 400;
  font-size: 0.8rem;
}

span.vision {
  color: var(--accent);
  font-weight: 600;
  background: none;
}

/** UPDATE **/
#update {
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 30%,
      rgba(232, 255, 71, 0.05) 0%,
      transparent 60%
    ),
    var(--bg);
}

.update-card-size {
  display: flex;
  align-items: center;
  margin-top: 50px;
  height: 280px;
  max-width: 900px;
  overflow: hidden;
}
.update-card {
  display: flex;
  max-width: 900px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
}
.update-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.update-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px 22px;
}
.update-info h3 {
  max-lines: 2;
  margin-bottom: 6px;
}
.update-info p {
  font-size: 1rem;
  color: var(--darkgrey);
  overflow: hidden;
}
.update-info:hover p {
  overflow-y: auto;
  color: var(--darkgrey);
}
/* blur + opacity */
.blur-opacity {
  animation: blur-opacity 11s ease-in-out infinite;
}
@keyframes blur-opacity {
  0%,
  100% {
    filter: blur(0px);
    opacity: 1;
  }
  50% {
    filter: blur(5px);
    opacity: 0;
  }
}

/** **/
/** **/
/** PAGINATION **/
/** **/
/** **/

.timeline-container {
  width: 100%;
  max-width: 1200px;
}

.timeline-title {
  text-align: center;
  color: var(--text);
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 600;
}

.cards-scroll-wrapper {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}
.cards-scroll-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cards-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* per mostrare le ombre solo quando necessario */
.cards-scroll-wrapper.show-left-shadow::before {
  opacity: 1;
}
.cards-scroll-wrapper.show-right-shadow::after {
  opacity: 1;
}

/* Contenitore scroll orizzontale */
.cards-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  /* Nasconde scrollbar ma mantiene funzionalità */
  scrollbar-width: none;
}
.cards-scroll::-webkit-scrollbar {
  display: none;
}

/* Griglia di card */
.cards-grid {
  display: flex;
  gap: 40px;
  min-width: min-content;
  position: relative;
  z-index: 2;
}

/* Contenitore singola card con timeline */
.card-timeline-item {
  flex: 0 0 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Linea continua che parte dal primo punto */
.card-timeline-item:first-child .timeline-point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: var(--line-width, 0px);
  height: 2px;
  background: var(--muted);
  transform: translateY(-50%);
}

/* Data e punto della timeline */
.timeline-point-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.timeline-point {
  width: 16px;
  height: 16px;
  background: var(--muted);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.timeline-point.active {
  /* box-shadow: 0 0 0 3px #667eea, 0 0 20px rgba(102, 126, 234, 0.6); */
  background: var(--text);
}
.timeline-point.active::before {
  width: 80;
  height: 3;
  background: var(--text);
}

.timeline-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-date.active {
  color: var(--text);
  font-weight: 700;
}

/* Animazione fade in per le card */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-timeline-item {
  animation: fadeInUp 0.6s ease-out forwards;
}

.card-timeline-item:nth-child(1) {
  animation-delay: 0s;
}
.card-timeline-item:nth-child(2) {
  animation-delay: 0.1s;
}
.card-timeline-item:nth-child(3) {
  animation-delay: 0.2s;
}
.card-timeline-item:nth-child(4) {
  animation-delay: 0.3s;
}
.card-timeline-item:nth-child(5) {
  animation-delay: 0.4s;
}

/** JOIN **/
#join {
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 30%,
      rgba(232, 255, 71, 0.05) 0%,
      transparent 60%
    ),
    var(--bg);
}

.join-info {
  padding: 20px 22px;
}
.join-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.join-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

.wrong-list {
  list-style: none;
}
.wrong-list li::before {
  content: "✕";
  color: var(--red);
  font-weight: 700;
  margin-right: 10px;
}
.wrong-list li {
  color: grey;
}
.wrong-list li span {
  text-decoration: line-through;
}

.right-list {
  list-style: none;
}
.right-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  margin-right: 10px;
}
.right-list li {
  color: var(--text);
  font-weight: 600;
}

.btn-join {
  background: var(--accent);
  margin-top: 50px;
  color: var(--bg);
  padding: 14px 70px;
  font-size: 1rem;
  box-shadow: 0 20px 28px rgba(71, 255, 160, 0.3);
}
.btn-join:hover {
  background: var(--accent);
  /* background: linear-gradient(90deg, var(--accent) 0%, #8ea7ff 100%); */
  color: var(--bg);
  box-shadow: none;
  transform: translateY(2px);
}

/** SUPPORT **/
#support {
  background: var(--bg);
  align-items: flex-start;
}

.support-wrap {
  width: 100%;
}

.support-wrap p.space {
  line-height: 1.7;
  margin-bottom: 50px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0px 24px;
}

input,
textarea {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: var(--accent2);
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

.support-wrap svg {
  margin-right: 10px;
}

/** FOOTER **/

footer {
  padding: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--bg);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.no-copy {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a.active {
  text-decoration: underline;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  color: var(--muted);
  transition:
    color 0.2s,
    transform 0.2s;
  display: flex;
}

.footer-social a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

/* delete page */
input.input-delete {
  width: 60%;
}

.user-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

#user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface);
}

#user-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.error-msg {
  color: var(--red);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.danger {
  color: var(--red) !important;
  margin-bottom: 30px;
}

.btn-danger {
  background: var(--red);
  color: var(--bg);
  border: none;
}
.btn-danger:hover {
  background: #c62828;
  transform: translateY(-2px);
}

/* secret */
.secret-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* parte dal basso */
  opacity: 0;
  pointer-events: none;
  transition: opacity 2.5s;
}
.secret-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.secret-box {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  transform: translateY(100vh);
}
.secret-box.rolling {
  transform: translateY(-10%);
  transition: transform 16s linear;
}
.secret-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}
.secret-name {
  font-size: 1rem;
  color: var(--muted);
}
.secret-role {
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.secret-divider {
  width: 40px;
  height: 1px;
  background: var(--muted);
  opacity: 0.3;
}
.secret-logo {
  display: flex;
  flex-direction: row;
}
.secret-close {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.secret-close.visible {
  opacity: 1;
  pointer-events: all;
}

/* Responsive */
@media (max-width: 768px) {
  /* nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
  } */

  nav {
    position: fixed;
    top: 16px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    height: auto;
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .nav-pill {
    display: flex;
    align-items: center;
    gap: 3px;
    background: var(--bg);
    border-radius: 9999px;
    padding: 10px 20px 10px 15px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }

  .nav-pill-section {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .nav-logo-mobile {
    opacity: 1;
    background: none;
    padding: 0;
    border-radius: 0;
    position: static;
    top: 24px;
  }

  .nav-logo {
    display: none;
  }

  .nav-logo-name {
    margin-top: 0;
  }

  .nav-link {
    display: none;
  }

  .nav-lang {
    bottom: 0;
    top: 12px;
    right: -72px;
  }

  section {
    padding-left: 20px;
    margin-right: 0;
  }

  section.more-space {
    margin-top: 30px;
  }

  .popup-box {
    padding: 30px 12px;
  }

  /* sapp */
  .sapp-title-effect {
    flex-direction: column;
    gap: 0;
  }

  #plans {
    gap: 40px;
  }

  .plan {
    flex: none;
    width: 100%;
    padding: 20px;
  }

  .timeline-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .card-timeline-item {
    flex: 0 0 280px;
  }

  .cards-grid {
    gap: 30px;
  }

  .update-info h3 {
    font-size: 16px;
  }

  .update-info p {
    font-size: 13px;
  }

  footer {
    margin-right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* secret */
  .secret-logo {
    align-items: center;
  }

  /* delete account */
  input.input-delete {
    width: 100%;
  }
}
