:root {
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --indigo-dark: #4f46e5;
  --cyan: #06b6d4;
  --navy: #0b0f19;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --surface: #fff;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    400 16px/1.6 "DM Sans",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  height: 78px;
  width: min(1160px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    700 22px/1 "Outfit",
    sans-serif;
  letter-spacing: -0.3px;
}
.brand img {
  border-radius: 11px;
}
.brand span span {
  color: var(--indigo);
}
.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  color: #475569;
}
.site-nav a {
  transition: color 0.2s;
}
.site-nav a:hover,
.text-link:hover,
.card-link:hover {
  color: var(--indigo);
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 17px;
  border-radius: 10px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
}
.hero {
  min-height: 675px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 70px 0 90px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--indigo-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-right: 8px;
  box-shadow: 0 0 0 5px #cffafe;
  vertical-align: 1px;
}
.hero h1 {
  max-width: 590px;
  margin: 0;
  font:
    800 clamp(45px, 5.6vw, 75px)/0.99 "Outfit",
    sans-serif;
  letter-spacing: -2.5px;
}
.hero h1 em,
.ai-copy h2 em {
  color: var(--indigo);
  font-style: normal;
}
.hero-intro {
  max-width: 530px;
  margin: 27px 0;
  color: var(--muted);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 30px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  border: 0;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
}
.button-primary {
  background: var(--indigo);
  color: white;
  box-shadow: 0 10px 24px #6366f13b;
}
.button-primary:hover {
  background: var(--indigo-dark);
}
.text-link,
.card-link {
  color: var(--indigo-dark);
  font-weight: 700;
  font-size: 14px;
}
.trust-row {
  display: flex;
  gap: 19px;
  color: var(--muted);
  font-size: 12px;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.65;
}
.orb-one {
  width: 350px;
  height: 350px;
  right: 0;
  top: 10px;
  background: #e0e7ff;
}
.orb-two {
  width: 220px;
  height: 220px;
  left: 16px;
  bottom: 30px;
  background: #cffafe;
}
.app-window {
  position: relative;
  z-index: 1;
  width: min(372px, 90%);
  min-height: 480px;
  background: #fff;
  border: 1px solid #e4e7ef;
  border-radius: 25px;
  box-shadow: 0 26px 60px #0f172a20;
  overflow: hidden;
  transform: rotate(2deg);
}
.window-top {
  height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
}
.window-logo {
  display: flex;
  gap: 7px;
  align-items: center;
  font-weight: 700;
}
.window-logo img {
  border-radius: 7px;
}
.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0e7ff;
  color: var(--indigo-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.greeting {
  padding: 27px 25px 19px;
}
.greeting span {
  color: var(--muted);
  font-size: 11px;
}
.greeting strong {
  display: block;
  font:
    600 25px "Outfit",
    sans-serif;
}
.greeting i {
  color: var(--indigo);
  font-style: normal;
}
.quick-add {
  margin: 0 22px 27px;
  padding: 13px 14px;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  color: var(--muted);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 14px #6366f111;
}
.plus {
  font-size: 20px;
  color: var(--indigo);
}
.mic {
  margin-left: auto;
  color: var(--indigo);
  font-size: 19px;
}
.preview-label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.4px;
  font-weight: 700;
}
.preview-line {
  height: 1px;
  background: #e2e8f0;
  flex: 1;
}
.reminder-list {
  padding: 0 18px;
}
.reminder-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 7px;
  border-bottom: 1px solid #f1f5f9;
}
.category {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.category-rose {
  color: var(--rose);
  background: #fff1f2;
}
.category-cyan {
  color: #0891b2;
  background: #ecfeff;
}
.category-amber {
  color: #d97706;
  background: #fffbeb;
}
.reminder-item strong {
  display: block;
  font-size: 12px;
}
.reminder-item small {
  color: var(--muted);
  font-size: 10px;
}
.item-menu {
  margin-left: auto;
  color: #94a3b8;
}
.window-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 69px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  color: #94a3b8;
}
.window-nav span {
  display: grid;
  place-items: center;
  font-size: 16px;
  gap: 1px;
}
.window-nav small {
  font-size: 8px;
}
.window-nav .active {
  color: var(--indigo);
}
.float-note {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 14px 32px #0f172a18;
  font-size: 11px;
}
.float-note span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #e0e7ff;
  color: var(--indigo);
}
.float-note small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}
.note-one {
  top: 105px;
  left: 5px;
}
.note-two {
  right: -4px;
  bottom: 76px;
}
.note-two span {
  background: #dcfce7;
  color: #059669;
}
.signal-band {
  background: var(--navy);
  color: #94a3b8;
}
.signal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  font-size: 12px;
}
.signal-inner > div {
  display: flex;
  gap: 35px;
  color: #c7d2fe;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.feature-section {
  padding: 125px 0 130px;
}
.section-heading {
  max-width: 630px;
}
.section-heading h2,
.privacy-intro h2,
.download-inner h2 {
  font:
    700 clamp(35px, 4vw, 54px)/1.08 "Outfit",
    sans-serif;
  letter-spacing: -1.4px;
  margin: 0 0 17px;
}
.section-heading > p:last-child,
.privacy-intro > p:last-child {
  color: var(--muted);
  max-width: 510px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 52px;
}
.feature-card {
  min-height: 265px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 29px;
  position: relative;
  overflow: hidden;
}
.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 38px 1.1fr 0.9fr;
  gap: 24px;
  min-height: 300px;
  background: linear-gradient(125deg, #fff 40%, #eef2ff);
}
.card-number {
  color: var(--indigo);
  font: 700 13px "Outfit";
}
.feature-card h3 {
  font:
    600 23px/1.15 "Outfit",
    sans-serif;
  margin: 0 0 11px;
}
.feature-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 10px;
  font-size: 21px;
  margin-bottom: 29px;
}
.card-icon.cyan {
  background: #cffafe;
  color: #0891b2;
}
.card-icon.amber {
  background: #fef3c7;
  color: #d97706;
}
.mini-chat {
  align-self: end;
  margin-bottom: -8px;
}
.chat-user,
.chat-ai {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 11px;
}
.chat-user {
  background: var(--indigo);
  color: #fff;
  margin-left: 35px;
  margin-bottom: 10px;
}
.chat-ai {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid #e0e7ff;
  box-shadow: 0 7px 18px #6366f115;
}
.chat-ai > span {
  color: var(--indigo);
  font-size: 16px;
}
.chat-ai b {
  font-size: 12px;
}
.ai-section {
  background: var(--navy);
  color: #fff;
  padding: 130px 0;
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 110px;
}
.ai-copy h2 {
  font:
    700 clamp(40px, 4vw, 59px)/1.03 "Outfit",
    sans-serif;
  letter-spacing: -1.5px;
  margin: 0 0 23px;
}
.ai-copy > p:not(.eyebrow) {
  color: #94a3b8;
  max-width: 480px;
}
.step-list {
  margin-top: 35px;
}
.step-list > div {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  margin: 19px 0;
}
.step-list span {
  color: #818cf8;
  font: 700 12px "Outfit";
  padding-top: 3px;
}
.step-list p {
  margin: 0;
}
.step-list b {
  font-size: 14px;
}
.step-list small {
  display: block;
  color: #64748b;
  font-size: 12px;
}
.ai-card {
  background: #fff;
  color: var(--ink);
  border-radius: 21px;
  padding: 25px;
  box-shadow: 0 25px 70px #0005;
}
.ai-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.ai-badge {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #e0e7ff;
  color: var(--indigo);
  font-size: 14px;
}
.live-dot {
  margin-left: auto;
  color: #10b981;
  font-size: 10px;
  letter-spacing: 0;
}
.ai-prompt {
  background: #f8fafc;
  border-left: 3px solid var(--indigo);
  margin: 29px 0 18px;
  padding: 16px 17px;
  color: #475569;
  font-size: 14px;
  font-style: italic;
}
.parsed {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #f0fdf4;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 18px;
}
.parsed-check {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 12px;
}
.parsed small {
  display: block;
  color: #059669;
  font-size: 9px;
  letter-spacing: 1.3px;
  font-weight: 700;
}
.parsed strong {
  display: block;
  font: 600 18px "Outfit";
}
.parsed div div {
  display: flex;
  gap: 7px;
  margin-top: 5px;
}
.parsed div div span {
  background: #dcfce7;
  color: #047857;
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 9px;
}
.confirm-button {
  width: 100%;
  padding: 13px;
  border: 0;
  border-radius: 9px;
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.confirm-button:hover {
  background: var(--indigo-dark);
}
.ai-footnote {
  text-align: center;
  color: #94a3b8;
  font-size: 10px;
  margin: 12px 0 0;
}
.privacy-section {
  padding: 130px 0;
}
.privacy-intro {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
}
.privacy-intro > p:last-child {
  margin-bottom: 7px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  gap: 16px;
  margin-top: 55px;
}
.privacy-tile {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  min-height: 240px;
}
.tile-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: #e0e7ff;
  color: var(--indigo);
  font-weight: 700;
  margin-bottom: 25px;
}
.privacy-tile h3 {
  font: 600 21px "Outfit";
  margin: 0 0 9px;
}
.privacy-tile p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.privacy-note {
  background: #eef2ff;
  border-color: #c7d2fe;
}
.privacy-note .tile-icon {
  background: #fff;
}
.privacy-note a {
  display: inline-block;
  color: var(--indigo-dark);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
}
.roadmap-section {
  background: #eef2ff;
  padding: 120px 0;
}
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid #c7d2fe;
}
.roadmap-item {
  position: relative;
  padding: 36px 34px 0 0;
}
.roadmap-item:not(:last-child) {
  border-right: 1px solid #c7d2fe;
  padding-right: 35px;
  margin-right: 35px;
}
.roadmap-dot {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c7d2fe;
  border: 3px solid #eef2ff;
}
.roadmap-item.active .roadmap-dot {
  background: var(--indigo);
  box-shadow: 0 0 0 4px #c7d2fe;
}
.roadmap-tag {
  font-size: 10px;
  color: var(--indigo-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
}
.roadmap h3 {
  font: 600 22px "Outfit";
  margin: 14px 0 9px;
}
.roadmap p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.faq-section {
  padding: 130px 0;
}
.faq-list {
  max-width: 790px;
  margin: 50px 0 0 auto;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
summary {
  cursor: pointer;
  list-style: none;
  font: 600 18px "Outfit";
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  float: right;
  color: var(--indigo);
  font-size: 25px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  color: var(--muted);
  font-size: 14px;
  max-width: 650px;
  margin: 13px 30px 0 0;
}
.download-section {
  background: linear-gradient(120deg, var(--indigo-dark), var(--indigo-light));
  color: #fff;
  padding: 80px 0;
}
.download-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.download-inner .eyebrow {
  color: #c7d2fe;
}
.download-inner h2 {
  font-size: 45px;
  margin-bottom: 12px;
}
.download-inner p:not(.eyebrow) {
  color: #e0e7ff;
  margin: 0;
  max-width: 510px;
}
.signup-form {
  width: min(395px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.signup-form input {
  min-width: 0;
  border: 0;
  border-radius: 9px;
  padding: 14px 15px;
  color: var(--ink);
  outline: 0;
}
.button-light {
  background: #fff;
  color: var(--indigo-dark);
  padding: 13px 17px;
}
.signup-form small {
  grid-column: span 2;
  color: #c7d2fe;
  font-size: 10px;
  margin-left: 2px;
}
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 55px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
}
.footer-brand .brand {
  color: #fff;
}
.footer-brand p {
  font-size: 13px;
  margin-top: 18px;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-links div {
  display: grid;
  gap: 7px;
  font-size: 12px;
}
.footer-links b {
  color: #fff;
  margin-bottom: 5px;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #23304e;
  margin-top: 55px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.15s;
}
@media (max-width: 800px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 600px);
  }
  .site-header {
    height: 70px;
  }
  .menu-toggle {
    display: grid;
    gap: 4px;
    padding: 8px;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    background: #fff;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 15px 30px #0f172a18;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 11px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 5px;
  }
  .hero {
    display: block;
    padding: 55px 0 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 51px;
  }
  .hero-visual {
    margin-top: 45px;
    min-height: 490px;
  }
  .signal-inner {
    display: block;
    padding: 18px 0;
  }
  .signal-inner > div {
    justify-content: space-between;
    gap: 8px;
    margin-top: 9px;
    font-size: 8px;
  }
  .feature-section,
  .privacy-section,
  .faq-section {
    padding: 85px 0;
  }
  .feature-grid {
    display: block;
    margin-top: 38px;
  }
  .feature-card {
    margin-bottom: 16px;
  }
  .feature-wide {
    display: block;
    min-height: 0;
  }
  .feature-wide .card-number {
    margin-bottom: 20px;
  }
  .mini-chat {
    margin-top: 27px;
  }
  .ai-section {
    padding: 85px 0;
  }
  .ai-layout {
    display: block;
  }
  .ai-card {
    margin-top: 50px;
  }
  .privacy-intro {
    display: block;
  }
  .privacy-grid {
    display: block;
    margin-top: 38px;
  }
  .privacy-tile {
    margin-bottom: 16px;
    min-height: 0;
  }
  .roadmap-section {
    padding: 85px 0;
  }
  .roadmap {
    display: block;
    margin-top: 45px;
  }
  .roadmap-item,
  .roadmap-item:not(:last-child) {
    border-right: 0;
    border-left: 1px solid #c7d2fe;
    margin: 0 0 0 5px;
    padding: 28px 0 28px 28px;
  }
  .roadmap-dot {
    left: -6px;
    top: 28px;
  }
  .download-inner {
    display: block;
  }
  .signup-form {
    margin-top: 30px;
  }
  .footer-inner {
    display: block;
  }
  .footer-links {
    margin-top: 35px;
    gap: 60px;
  }
  .footer-bottom {
    display: block;
    margin-top: 35px;
  }
  .footer-bottom span {
    display: block;
    margin-top: 5px;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    font-size: 45px;
    letter-spacing: -1.8px;
  }
  .hero-actions {
    display: block;
  }
  .hero-actions .text-link {
    display: inline-block;
    margin-top: 18px;
  }
  .trust-row {
    flex-wrap: wrap;
  }
  .float-note {
    transform: scale(0.88);
  }
  .note-one {
    left: -13px;
  }
  .note-two {
    right: -14px;
  }
  .signup-form {
    display: block;
  }
  .signup-form input,
  .signup-form button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .signup-form button {
    margin-top: 8px;
  }
  .signup-form small {
    display: block;
    margin-top: 9px;
  }
  .footer-links {
    gap: 35px;
  }
}
.legal-page {
  max-width: 760px;
  padding: 95px 0 130px;
}
.legal-page h1 {
  font:
    700 clamp(42px, 6vw, 72px) / 1 "Outfit",
    sans-serif;
  letter-spacing: -2px;
  margin: 0 0 12px;
}
.legal-page h2 {
  font:
    600 25px "Outfit",
    sans-serif;
  margin: 42px 0 8px;
}
.legal-page p {
  color: var(--muted);
  max-width: 680px;
}
.legal-date {
  font-size: 13px;
  color: var(--muted);
}
