:root {
  --font-geist: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --secondary: #7c3aed;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --background: #f8fafc;
  --surface: #ffffff;
  --text: #1f2937;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --lime: #b9ef3f;
  --shadow-sm: 0 8px 24px rgba(31, 41, 55, 0.07);
  --shadow-lg: 0 24px 70px rgba(79, 70, 229, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 23px;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.13);
  border-radius: 13px;
  background: radial-gradient(circle at 50% 46%, #eefbd3 0 35%, #e7e9ff 85%);
  box-shadow: 0 7px 18px rgba(79, 70, 229, 0.12);
}

.brand-mark img {
  width: 47px;
  height: 47px;
  object-fit: cover;
  transform: scale(1.22);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 620;
}

.main-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.header-support {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 720;
  transition: transform 160ms ease, background 160ms ease;
}

.header-support:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 36px;
  padding-block: 72px 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--primary);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dddafe;
  border-radius: 999px;
  background: #eeedff;
  letter-spacing: 0.06em;
}

.eyebrow span {
  color: var(--secondary);
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 22px;
  font-size: clamp(51px, 6.3vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.25);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.hero-notes {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 620;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d1fae5;
  color: #047857;
  font-size: 11px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(470px, 90%);
  aspect-ratio: 1;
  border-radius: 38% 62% 60% 40% / 47% 40% 60% 53%;
  background: linear-gradient(145deg, #e2e0ff, #f2eaff 58%, #e9f9c9);
  transform: rotate(7deg);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-blob-one {
  top: 18px;
  right: 4%;
  width: 78px;
  height: 78px;
  background: #c4b5fd;
  opacity: 0.55;
}

.hero-blob-two {
  left: 2%;
  bottom: 44px;
  width: 54px;
  height: 54px;
  background: #bef264;
  opacity: 0.58;
}

.taskito-hero {
  position: relative;
  z-index: 2;
  width: min(500px, 92%);
  height: auto;
  border-radius: 34%;
  filter: drop-shadow(0 28px 32px rgba(31, 41, 55, 0.16));
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(31, 41, 55, 0.13);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.floating-card small {
  color: var(--text-secondary);
  font-size: 11px;
}

.floating-card-top {
  top: 92px;
  left: -9px;
}

.floating-card-bottom {
  right: -2px;
  bottom: 84px;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eef2ff;
  font-size: 18px;
}

.avatar-bubbles {
  display: flex;
}

.avatar-bubbles b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff6b6b;
  color: #fff;
  font-size: 12px;
}

.avatar-bubbles b + b {
  margin-left: -8px;
  background: #96ceb4;
}

.value-strip {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.value-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid > div {
  padding: 28px 9%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 14px;
}

.value-grid > div + div {
  border-left: 1px solid var(--border);
}

.value-grid strong {
  grid-row: span 2;
  align-self: center;
  color: #c7d2fe;
  font-size: 29px;
  letter-spacing: -0.05em;
}

.value-grid span {
  font-weight: 780;
}

.value-grid small {
  margin-top: 3px;
  color: var(--text-secondary);
}

.section {
  padding-block: 112px;
}

.section-heading h2,
.how-copy h2,
.points-copy h2,
.cta-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.section-heading p,
.how-intro,
.points-copy > p,
.cta-copy > p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.centered-heading {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading p {
  max-width: 610px;
  margin: 0 auto;
}

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.feature-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.11);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 21px;
  font-weight: 820;
}

.feature-icon.indigo { background: #e0e7ff; color: var(--primary); }
.feature-icon.green { background: #d1fae5; color: #047857; }
.feature-icon.violet { background: #ede9fe; color: var(--secondary); }
.feature-icon.orange { background: #ffedd5; color: #c2410c; }

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.how-section {
  overflow: hidden;
  background: #111827;
  color: #fff;
}

.how-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 80px;
}

.how-copy .section-kicker {
  color: #a5b4fc;
}

.how-copy h2 {
  color: #fff;
}

.how-intro {
  max-width: 570px;
  color: #9ca3af;
}

.steps-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  padding-block: 20px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-list li > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid #6366f1;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.2);
  color: #c7d2fe;
  font-size: 13px;
  font-weight: 800;
}

.steps-list h3 {
  margin: 1px 0 6px;
  font-size: 17px;
}

.steps-list p {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.38), rgba(99, 102, 241, 0) 68%);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 300px;
  padding: 8px;
  overflow: hidden;
  border: 2px solid #374151;
  border-radius: 42px;
  background: #0b1020;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(5deg);
}

.phone-frame::before,
.screenshot-phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 72px;
  height: 19px;
  border-radius: 999px;
  background: #05070c;
  transform: translateX(-50%);
}

.phone-frame img,
.screenshot-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 34px;
}

.mini-progress-card {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 86px;
  width: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(31, 41, 55, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.mini-progress-card span,
.mini-progress-card strong {
  display: block;
}

.mini-progress-card span {
  color: #9ca3af;
  font-size: 12px;
}

.mini-progress-card strong {
  margin-top: 4px;
  font-size: 21px;
}

.mini-progress-card i {
  height: 6px;
  margin-top: 12px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #374151;
}

.mini-progress-card b {
  width: 75%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--success);
}

.screenshots-section {
  overflow: hidden;
  background: #eef2ff;
}

.screenshot-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.screenshot-heading p {
  margin: 0 0 23px;
}

.screenshots-track {
  margin-top: 66px;
  padding: 18px 4px 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(215px, 1fr));
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #a5b4fc transparent;
}

.screenshot-card {
  min-width: 215px;
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-card:nth-child(even) {
  padding-top: 42px;
}

.screenshot-phone {
  position: relative;
  padding: 6px;
  overflow: hidden;
  border: 2px solid #d1d5db;
  border-radius: 34px;
  background: #111827;
  box-shadow: 0 22px 45px rgba(79, 70, 229, 0.14);
}

.screenshot-phone::before {
  top: 11px;
  width: 57px;
  height: 15px;
}

.screenshot-phone img {
  border-radius: 26px;
}

.screenshot-card figcaption {
  margin-top: 17px;
  text-align: center;
  font-size: 13px;
  font-weight: 720;
}

.points-section {
  background: var(--surface);
}

.points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 96px;
}

.points-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: linear-gradient(145deg, #eef2ff, #f5f3ff 55%, #ecfccb);
}

.score-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 55px rgba(79, 70, 229, 0.15);
}

.score-card-main {
  width: min(360px, 82%);
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border: 2px solid #6366f1;
  border-radius: 22px;
  transform: rotate(-3deg);
}

.score-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff6b6b;
  color: white;
  font-size: 21px;
  font-weight: 800;
}

.score-card-main small,
.score-card-main strong {
  display: block;
}

.score-card-main small {
  color: var(--text-secondary);
}

.score-card-main strong {
  margin-top: 2px;
  color: var(--primary);
  font-size: 38px;
}

.score-rise {
  color: var(--success);
  font-size: 25px;
  font-weight: 800;
}

.score-card-side {
  position: absolute;
  right: 7%;
  bottom: 55px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 15px;
  transform: rotate(4deg);
}

.score-card-side > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d1fae5;
  color: #047857;
  font-weight: 900;
}

.score-card-side strong,
.score-card-side small {
  display: block;
}

.score-card-side strong { font-size: 13px; }
.score-card-side small { margin-top: 3px; color: #059669; font-size: 11px; }

.points-spark {
  position: absolute;
  color: #a3e635;
  font-size: 34px;
}

.spark-one { top: 54px; left: 12%; }
.spark-two { right: 15%; top: 75px; font-size: 22px; color: #818cf8; }

.check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
  font-size: 15px;
  font-weight: 620;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d1fae5;
  color: #047857;
  font-size: 12px;
}

.final-cta {
  padding-top: 90px;
}

.cta-panel {
  position: relative;
  min-height: 450px;
  padding: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(125deg, #3730a3, #4f46e5 48%, #7c3aed);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.cta-panel::before { width: 340px; height: 340px; right: -80px; top: -120px; }
.cta-panel::after { width: 180px; height: 180px; left: 48%; bottom: -100px; }

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.light-kicker { color: #c7d2fe; }
.cta-copy h2 { color: #fff; }
.cta-copy > p { max-width: 510px; color: #e0e7ff; }

.button-white {
  margin-top: 18px;
  background: #fff;
  color: var(--primary-dark);
}

.cta-taskito {
  position: absolute;
  z-index: 1;
  right: -70px;
  bottom: -155px;
  width: 520px;
  height: auto;
  border-radius: 40%;
  filter: drop-shadow(0 20px 26px rgba(15, 23, 42, 0.2));
}

.site-footer {
  margin-top: 40px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
  background: #f1f5f9;
}

.footer-main {
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 24px;
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
}

/* Legal and support pages */
.legal-page {
  background: var(--surface);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #eef2ff, #faf5ff 55%, #f7fee7);
}

.legal-hero::after {
  content: "";
  position: absolute;
  top: -170px;
  right: 5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(165, 180, 252, 0.28);
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 405px;
  padding-block: 98px 76px;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 15px 0 16px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.legal-hero small {
  margin-top: 25px;
  display: block;
  color: #4b5563;
  font-weight: 620;
}

.legal-mascot-wrap {
  position: absolute;
  z-index: 1;
  right: max(calc((100vw - 1180px) / 2 - 40px), -45px);
  bottom: -165px;
  width: 430px;
  opacity: 0.78;
  transform: rotate(4deg);
}

.legal-mascot-wrap img {
  width: 100%;
  height: auto;
  border-radius: 38%;
}

.legal-layout {
  padding-block: 80px 110px;
  display: grid;
  grid-template-columns: 225px minmax(0, 760px);
  justify-content: center;
  gap: 76px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}

.legal-aside > a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 720;
}

.legal-contact-card {
  margin-top: 25px;
  padding: 18px;
  border: 1px solid #dddafe;
  border-radius: 15px;
  background: #f5f3ff;
}

.legal-contact-card span,
.legal-contact-card a {
  display: block;
  overflow-wrap: anywhere;
}

.legal-contact-card span {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 12px;
}

.legal-contact-card a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 720;
}

.legal-content section + section {
  margin-top: 50px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 25px 0 8px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.78;
}

.legal-content p {
  margin: 12px 0;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-contact-hero {
  padding: 27px !important;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #c7d2fe !important;
  border-radius: 20px;
  background: #eef2ff;
}

.support-mail-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--primary);
  color: #fff;
  font-size: 24px;
}

.support-contact-hero h2,
.support-contact-hero p {
  margin: 0;
}

.support-contact-hero p {
  font-size: 13px;
}

.support-contact-hero a {
  display: inline-block;
  margin-top: 5px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.support-warning {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 4px solid var(--warning);
  border-radius: 4px 12px 12px 4px;
  background: #fffbeb;
  color: #92400e;
  font-size: 14px;
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 720;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--primary);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 42px 20px 0;
  font-size: 15px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .floating-card-top { left: 5%; }
  .floating-card-bottom { right: 5%; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid,
  .points-grid {
    grid-template-columns: 1fr;
  }

  .how-copy,
  .points-copy {
    max-width: 720px;
  }

  .phone-stage {
    min-height: 620px;
  }

  .screenshot-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .screenshot-heading p {
    max-width: 650px;
  }

  .points-visual {
    order: 2;
  }

  .cta-taskito {
    right: -150px;
    opacity: 0.6;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-mascot-wrap {
    right: -95px;
    opacity: 0.33;
  }

  .legal-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 32px, 620px);
  }

  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    display: none;
  }

  .header-support {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    padding-block: 50px 64px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .taskito-hero {
    width: min(390px, 90%);
  }

  .floating-card-top {
    top: 54px;
    left: 0;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 45px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .value-grid > div {
    padding: 20px 4%;
  }

  .value-grid > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .how-copy h2,
  .points-copy h2,
  .cta-copy h2 {
    font-size: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .how-grid {
    gap: 35px;
  }

  .phone-stage {
    min-height: 555px;
  }

  .phone-frame {
    width: 255px;
  }

  .mini-progress-card {
    right: 0;
    bottom: 50px;
  }

  .screenshots-track {
    grid-template-columns: repeat(6, 205px);
    gap: 18px;
  }

  .screenshot-card:nth-child(even) {
    padding-top: 0;
  }

  .points-grid {
    gap: 45px;
  }

  .points-visual {
    min-height: 350px;
  }

  .cta-panel {
    min-height: 520px;
    padding: 50px 28px 220px;
    align-items: flex-start;
  }

  .cta-taskito {
    right: 50%;
    bottom: -160px;
    width: 430px;
    opacity: 0.78;
    transform: translateX(50%);
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .legal-hero-inner {
    min-height: 380px;
    padding-block: 80px 64px;
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-mascot-wrap {
    right: -145px;
    bottom: -120px;
    width: 360px;
    opacity: 0.22;
  }

  .legal-layout {
    padding-block: 55px 80px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-aside {
    position: static;
  }

  .legal-contact-card {
    display: inline-block;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-support span {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    flex-direction: column;
  }

  .floating-card {
    transform: scale(0.88);
  }

  .floating-card-top {
    transform-origin: left top;
  }

  .floating-card-bottom {
    transform-origin: right bottom;
  }

  .mini-progress-card {
    width: 165px;
  }

  .score-card-main {
    padding: 16px;
  }

  .score-card-main strong {
    font-size: 31px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links > div:last-child {
    grid-column: auto;
  }

  .support-contact-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
