:root {
  --black: #000;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.58);
  --faint: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.055);
  --green: #5be873;
  --green-dark: #0f8f36;
  --card: #070707;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

::selection {
  background: rgba(91, 232, 115, 0.32);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.toast-preview {
  pointer-events: none;
  position: fixed;
  left: 50%;
  top: 82px;
  z-index: 100;
  width: min(300px, calc(100vw - 36px));
  transform: translateX(-50%) translateY(-16px);
  opacity: 0;
  transition: opacity 380ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.toast-preview.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-line,
.toast-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.74);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(22px);
}

.toast-line {
  display: inline-flex;
  margin-left: 70px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.toast-card {
  margin-top: 8px;
  padding: 12px;
}

.toast-card p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.toast-card code {
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 12px;
  z-index: 60;
  width: min(860px, calc(100vw - 24px));
  transform: translateX(-50%);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 12px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(4px);
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(8, 8, 8, 0.64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 104px;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

.brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  box-shadow:
    0 0 22px rgba(91, 232, 115, 0.16);
}

.brand-logo,
.footer-logo {
  position: relative;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.dream-link {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 6px rgba(91, 232, 115, 0.35));
}

.nav-actions {
  gap: 8px;
}

.lang-button,
.signin,
.download-button,
.menu-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.lang-button {
  height: 32px;
  padding: 0 10px;
  border-color: transparent;
  border-radius: 10px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.signin,
.download-button {
  display: inline-flex;
  align-items: center;
  height: 32px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 650;
}

.download-button {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.lang-button:hover,
.signin:hover,
.download-button:hover,
.menu-button:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolate: isolate;
  min-height: 840px;
  overflow: hidden;
  padding: 142px 20px 180px;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.halo {
  position: absolute;
  left: 50%;
  top: -110px;
  width: 720px;
  height: 380px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 232, 115, 0.22), rgba(15, 143, 54, 0.04) 45%, transparent 72%);
  filter: blur(20px);
}

.rays {
  position: absolute;
  left: 50%;
  top: -40px;
  width: 980px;
  height: 420px;
  transform: translateX(-50%);
  background: conic-gradient(from 180deg at 50% 0%, transparent, rgba(91, 232, 115, 0.12), transparent 18%, rgba(255,255,255,0.04), transparent 36%);
  opacity: 0.55;
  filter: blur(8px);
}

.dots {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1400px;
  height: 430px;
  transform: translateX(-50%);
  background-image: radial-gradient(rgba(255,255,255,0.16) 0.8px, transparent 0.8px);
  background-size: 15px 15px;
  mask-image: radial-gradient(circle at 50% 34%, black 0%, transparent 62%);
}

.cloud {
  position: absolute;
  bottom: -92px;
  width: 780px;
  max-width: none;
  opacity: 0.86;
  filter: saturate(0.9) brightness(0.95);
  animation: cloudFloat 12s ease-in-out infinite;
}

.cloud-left {
  left: -210px;
}

.cloud-right {
  right: -210px;
  transform: scaleX(-1);
  animation-delay: -1.2s;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 190px;
  background: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  backdrop-filter: blur(10px);
  animation: riseIn 820ms ease-out both;
}

.shop-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 14px rgba(74, 222, 128, 0.85);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 16ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 3.35rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  animation: riseIn 820ms ease-out 70ms both;
}

.hero p {
  max-width: 590px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.35;
  animation: riseIn 820ms ease-out 140ms both;
}

.prompt-box {
  max-width: 672px;
  margin: 40px auto 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  animation: riseIn 820ms ease-out 210ms both;
}

.prompt-box:focus-within,
.prompt-box.is-active {
  transform: translateY(-2px);
  border-color: rgba(91, 232, 115, 0.26);
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(91, 232, 115, 0.08),
    0 0 80px rgba(91, 232, 115, 0.08);
}

.prompt-box textarea {
  width: 100%;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
}

.prompt-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.prompt-toolbar,
.tool-left {
  display: flex;
  align-items: center;
}

.prompt-toolbar {
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.tool-left {
  gap: 8px;
  min-width: 0;
}

.tool-left button,
.send-button,
.iphone-chip,
.model-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tool-left button,
.send-button {
  width: 32px;
  padding: 0;
}

.iphone-chip,
.model-chip {
  padding: 0 12px;
}

.iphone-chip {
  gap: 6px;
}

.iphone-chip svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.92;
}

.model-chip {
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.38);
  gap: 7px;
  padding-left: 7px;
}

.model-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3a3029;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.model-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.46;
}

.tool-left button:hover,
.iphone-chip:hover,
.model-chip:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
}

.send-button {
  background: rgba(255, 255, 255, 0.1);
}

.send-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.send-button:hover {
  background: #fff;
  color: #000;
}

.trusted,
.features,
.integrations,
.pricing,
.faqs,
.download,
.footer-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.trusted {
  padding: 58px 0 72px;
  text-align: center;
}

.trusted p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 720;
}

.trusted ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 34px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.trusted li {
  display: grid;
  justify-items: center;
  gap: 10px;
  animation: trustedFloat 13s ease-in-out infinite;
}

.features article,
.price-card,
.faq-list details,
.logo-cloud span,
.trusted li,
.dream-caps article,
.dream-gallery-grid span,
.platform-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background 180ms ease;
}

.features article.is-visible,
.price-card.is-visible,
.faq-list details.is-visible,
.logo-cloud span.is-visible,
.trusted li.is-visible,
.dream-caps article.is-visible,
.dream-gallery-grid span.is-visible,
.platform-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trusted li:nth-child(2) { animation-delay: -2.4s; }
.trusted li:nth-child(3) { animation-delay: -4.8s; }

.trusted img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
}

.trusted strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 62px 0 104px;
}

.features article,
.price-card,
.faq-list,
.download > div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.features article {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(91, 232, 115, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
}

.features article::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 232, 115, 0.62), transparent);
  opacity: 0.55;
}

.features article:hover,
.price-card:hover,
.logo-cloud span:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
}

.features h2,
.section-heading h2,
.download h2 {
  color: #fff;
  letter-spacing: -0.042em;
}

.features h2 {
  max-width: 9.5ch;
  margin: 18px 0 0;
  font-size: clamp(30px, 3.35vw, 42px);
  line-height: 0.98;
}

.features p,
.section-heading p,
.faq-list p,
.download p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.feature-step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(91, 232, 115, 0.92);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.features article p {
  max-width: 31ch;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15.5px;
  line-height: 1.62;
}

.integrations,
.pricing,
.faqs {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 750;
}

.section-heading h2,
.download h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.94;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.logo-cloud span {
  display: flex;
  flex-direction: column;
  gap: 10px;
  place-items: center;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.logo-cloud img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.32));
  transition: transform 220ms ease, filter 220ms ease;
}

.logo-cloud span:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) drop-shadow(0 14px 26px rgba(255, 255, 255, 0.12));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  min-height: 460px;
  padding: 28px;
  border-radius: 30px;
}

.price-card.popular {
  border-color: rgba(91, 232, 115, 0.35);
  background: radial-gradient(circle at 88% 0%, rgba(91, 232, 115, 0.2), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255,255,255,0.018));
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(91, 232, 115, 0.18);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.price-card h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 26px;
}

.price-card > p,
.price-card small {
  color: rgba(255, 255, 255, 0.5);
}

.price-card small {
  display: block;
  min-height: 38px;
  font-size: 13px;
}

.price-card strong {
  display: block;
  margin: 26px 0 10px;
  color: #fff;
  font-size: 52px;
  letter-spacing: -0.055em;
}

.price-card strong span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 16px;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 11px;
  min-height: 126px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.price-card a,
.download-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.price-card a:hover,
.download-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.12);
}

.price-card a {
  width: 100%;
}

.billing-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.faqs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
}

.faqs .section-heading {
  margin: 0;
  text-align: left;
}

.faq-list {
  padding: 10px 24px;
  border-radius: 30px;
}

.faq-list details {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  padding-right: 42px;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.62);
  transform: translateY(-50%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.faq-list details[open] summary::after {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: 12px 0 0;
  padding-right: 34px;
  font-size: 14px;
}

.download {
  padding: 80px 0 120px;
}

.download > div {
  padding: 78px 24px;
  border-radius: 34px;
  text-align: center;
}

.download p {
  margin-bottom: 28px;
}

.download-cta {
  padding: 0 24px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  padding: 64px 20px 38px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 56px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.footer-logo .brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.site-footer p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer p span {
  display: block;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-links h3 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
}

.legal-row {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-row p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12.5px;
}

.legal-page .faqs {
  min-height: 680px;
  padding-top: 130px;
}

.legal-page .faq-list {
  max-width: 780px;
}

.legal-page .faq-list details {
  opacity: 1;
  transform: none;
}

.legal-page h1 {
  color: #fff;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.login-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px 20px 86px;
  background: #000;
}

.login-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.login-bg .cloud {
  bottom: -140px;
  opacity: 0.68;
}

.login-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 440px);
  gap: 54px;
  align-items: center;
  width: min(980px, 100%);
  min-height: calc(100vh - 220px);
  margin: 0 auto;
}

.login-copy h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.88;
  letter-spacing: -0.048em;
}

.login-copy p {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.55;
}

.login-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(91, 232, 115, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  padding: 26px;
  backdrop-filter: blur(18px);
}

.login-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.login-card-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 650;
}

.auth-actions {
  display: grid;
  gap: 10px;
}

.auth-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  font-weight: 780;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.auth-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.auth-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 950;
}

.apple-auth svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
}

.email-form {
  display: grid;
  gap: 12px;
}

.email-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.email-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0 15px;
  font: inherit;
  outline: none;
}

.email-form input:focus {
  border-color: rgba(91, 232, 115, 0.35);
  box-shadow: 0 0 0 3px rgba(91, 232, 115, 0.08);
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.email-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.login-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

.login-note a {
  color: rgba(255, 255, 255, 0.75);
}

.dream-page {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.dream-hero {
  position: relative;
  isolate: isolate;
  min-height: 900px;
  overflow: hidden;
  padding: 150px 20px 92px;
  text-align: center;
}

.dream-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
}

.dream-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.dream-hero .halo {
  top: -90px;
  width: 840px;
  height: 460px;
  background: radial-gradient(circle, rgba(91, 232, 115, 0.26), rgba(15, 143, 54, 0.05) 46%, transparent 72%);
}

.dream-hero .rays {
  top: -54px;
  opacity: 0.72;
}

.dream-hero .dots {
  height: 620px;
  opacity: 0.72;
  mask-image: radial-gradient(circle at 50% 26%, black 0%, transparent 68%);
}

.dream-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.dream-eyebrow,
.dream-kicker {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 780;
}

.dream-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  animation: riseIn 760ms ease-out both;
}

.dream-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(91, 232, 115, 0.8);
}

.dream-hero h1 {
  max-width: 16ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.052em;
  animation: riseIn 760ms ease-out 80ms both;
}

.dream-hero h1 span,
.dream-platform h2 span,
.dream-bottom h2 span {
  background: linear-gradient(90deg, #6fff88, #3fd356 52%, #1ab548);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dream-hero-inner > p:not(.dream-eyebrow) {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.42;
  animation: riseIn 760ms ease-out 160ms both;
}

.dream-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  animation: riseIn 760ms ease-out 240ms both;
}

.dream-primary,
.dream-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.dream-primary {
  background: #fff;
  color: #000;
}

.dream-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  backdrop-filter: blur(12px);
}

.dream-primary:hover,
.dream-secondary:hover {
  transform: translateY(-1px);
}

.dream-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.12);
}

.dream-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
}

.dream-phone-mini {
  width: 230px;
  height: 460px;
  margin: 62px auto 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 44px;
  background: linear-gradient(160deg, rgba(63, 211, 86, 0.18), rgba(0, 0, 0, 0.62));
  box-shadow: 0 40px 120px -30px rgba(63, 211, 86, 0.45);
  animation: phoneFloat 7s ease-in-out infinite, riseIn 760ms ease-out 320ms both;
}

.dream-phone-screen {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 18%, rgba(91, 232, 115, 0.22), transparent 35%),
    #000;
  padding: 28px;
}

.dream-phone-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 94px;
  height: 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  transform: translateX(-50%);
}

.dream-app-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3fd356, #1ab548);
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.dream-phone-screen strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.dream-phone-screen small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.dream-platform,
.dream-preview,
.dream-caps,
.dream-gallery,
.dream-bottom {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.dream-platform {
  padding: 88px 0 74px;
  text-align: center;
}

.dream-kicker {
  margin: 0 0 12px;
}

.dream-platform h2,
.dream-preview h2,
.dream-gallery h2,
.dream-bottom h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.platform-card {
  display: inline-grid;
  justify-items: center;
  gap: 14px;
  min-width: 190px;
  margin-top: 44px;
  padding: 28px 36px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.platform-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--green);
}

.platform-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.platform-card strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.dream-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

.dream-device {
  position: relative;
  width: 266px;
  height: 576px;
  margin: 0 auto;
  filter: drop-shadow(0 40px 100px rgba(63, 211, 86, 0.18));
}

.dream-device video {
  position: absolute;
  left: 9.8%;
  top: 9.5%;
  z-index: 1;
  width: 80.5%;
  height: 81%;
  border-radius: 34px;
  object-fit: cover;
  background: #000;
}

.dream-device img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.preview-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.76);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.preview-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(91, 232, 115, 0.8);
}

.dream-preview p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.62;
}

.dream-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 78px 0 94px;
}

.dream-caps article {
  min-height: 318px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 0%, rgba(91, 232, 115, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.dream-caps article:hover,
.platform-card:hover,
.dream-gallery-grid span:hover {
  border-color: rgba(255, 255, 255, 0.17);
  background:
    radial-gradient(circle at 85% 0%, rgba(91, 232, 115, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.dream-caps article span {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(91, 232, 115, 0.9);
  font-size: 13px;
  font-weight: 850;
}

.dream-caps h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.042em;
}

.dream-caps p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.62;
}

.dream-gallery {
  padding: 76px 0 84px;
  text-align: center;
}

.dream-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.dream-gallery-grid span {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.038);
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 820;
  backdrop-filter: blur(16px);
}

.dream-bottom {
  padding: 90px 0 130px;
  text-align: center;
}

.dream-bottom h2 {
  margin-bottom: 32px;
}

@keyframes phoneFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes cloudFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes trustedFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.3deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open .nav-links,
  .site-header.menu-open .nav-actions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav-actions {
    top: calc(100% + 150px);
  }

  .features,
  .pricing-grid,
  .faqs,
  .login-shell,
  .footer-inner,
  .footer-links,
  .dream-preview,
  .dream-caps {
    grid-template-columns: 1fr;
  }

  .logo-cloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .dream-preview {
    gap: 48px;
    text-align: center;
  }

  .dream-preview p {
    margin-left: auto;
    margin-right: auto;
  }

  .dream-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .login-shell {
    min-height: auto;
  }

  .login-card {
    max-width: 480px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .prompt-toolbar,
  .tool-left {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-left,
  .iphone-chip,
  .model-chip {
    width: 100%;
  }

  .send-button {
    align-self: flex-end;
  }

  .cloud {
    width: 520px;
  }

  .cloud-left {
    left: -260px;
  }

  .cloud-right {
    right: -260px;
  }

  .trusted ul {
    gap: 22px;
  }

  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .legal-page .faqs {
    padding-top: 118px;
  }

  .legal-page h1 {
    font-size: clamp(40px, 13vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .dream-hero {
    min-height: 780px;
    padding-top: 128px;
  }

  .dream-hero-inner {
    width: min(100%, calc(100vw - 32px));
  }

  .dream-hero h1 {
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 0.92;
    letter-spacing: -0.042em;
  }

  .dream-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dream-phone-mini {
    width: 204px;
    height: 408px;
    border-radius: 38px;
  }

  .dream-platform,
  .dream-preview,
  .dream-caps,
  .dream-gallery,
  .dream-bottom {
    width: min(100%, calc(100vw - 32px));
  }

  .dream-platform h2,
  .dream-preview h2,
  .dream-gallery h2,
  .dream-bottom h2 {
    font-size: clamp(40px, 13vw, 60px);
  }

  .dream-device {
    width: 228px;
    height: 494px;
  }

  .dream-caps {
    padding-top: 46px;
  }

  .dream-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
