:root {
  --bg: #07111f;
  --bg-soft: #0e1a2d;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #0d1729;
  --muted: #627085;
  --line: rgba(111, 130, 159, 0.22);
  --blue: #36b6ff;
  --violet: #8d5cff;
  --cyan: #33e7d4;
  --green: #35d47f;
  --shadow: 0 24px 70px rgba(5, 13, 28, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(54, 182, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(141, 92, 255, 0.22), transparent 32rem),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 42%, #f8fbff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 35, 61, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 35, 61, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -14rem -18rem auto;
  z-index: -1;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(51, 231, 212, 0.24), transparent 68%);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(26, 46, 78, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #101a2c;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-logo,
.dashboard-mark,
.assistant-logo-large {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(54, 105, 180, 0.17);
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.brand-logo img,
.dashboard-mark img,
.assistant-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #101a2c;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 26, 44, 0.18);
  white-space: nowrap;
}

.screen-section {
  min-height: clamp(720px, calc(100vh - 74px), 900px);
  display: grid;
  align-items: center;
  padding: 64px 0 72px;
}

.section-block {
  padding: 94px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #346cff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #091426;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span,
.community h2 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: #091426;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  color: #0d1729;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: #526174;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 18px 34px rgba(64, 126, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(64, 126, 255, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #172236;
  border: 1px solid rgba(111, 130, 159, 0.22);
}

.btn-full {
  width: 100%;
}

.trust-line,
.form-note,
.community-note,
.site-footer p,
.back-link {
  color: #6b778a;
  font-size: 14px;
  line-height: 1.65;
}

.trust-line {
  margin: 18px 0 0;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(54, 182, 255, 0.32), rgba(141, 92, 255, 0.22));
  filter: blur(18px);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.84)),
    radial-gradient(circle at 20% 0%, rgba(54, 182, 255, 0.24), transparent 36%);
  box-shadow: var(--shadow);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(141, 92, 255, 0.12);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.dashboard-mark {
  width: 52px;
  height: 52px;
}

.dashboard-top span,
.dashboard-top strong {
  display: block;
}

.dashboard-top span,
.insight-list p,
.community-card span {
  color: #69778c;
  font-size: 14px;
}

.dashboard-top strong {
  color: #101a2c;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 54%, transparent 55%),
    conic-gradient(from -15deg, var(--cyan), var(--blue), var(--violet), rgba(220, 229, 243, 0.9) 78%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 20px 46px rgba(24, 71, 126, 0.18);
}

.score-ring span {
  color: #091426;
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.score-ring small {
  margin-top: -30px;
  color: #68768a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 96px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(9, 20, 38, 0.05);
}

.mini-chart span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--violet));
}

.mini-chart span:nth-child(1) { height: 44%; }
.mini-chart span:nth-child(2) { height: 66%; }
.mini-chart span:nth-child(3) { height: 52%; }
.mini-chart span:nth-child(4) { height: 82%; }
.mini-chart span:nth-child(5) { height: 70%; }

.insight-list {
  display: grid;
  gap: 12px;
}

.insight-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.insight-list span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(53, 212, 127, 0.12);
}

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

.section-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(54, 105, 180, 0.16);
}

.section-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: #526174;
  font-size: 19px;
  line-height: 1.7;
}

.section-heading.compact {
  max-width: 680px;
}

.community {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(224, 242, 255, 0.74) 42%, rgba(255, 255, 255, 0));
}

.community-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.86fr);
  grid-template-areas:
    "wide moe"
    "wide other";
  gap: 20px;
  align-items: stretch;
}

.community-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 50px rgba(18, 43, 76, 0.12);
}

.community-card-wide {
  grid-area: wide;
}

.community-card:nth-child(2) {
  grid-area: moe;
}

.community-card:nth-child(3) {
  grid-area: other;
}

.community-card img {
  width: 100%;
  background: #fff;
}

.community-card-wide img {
  height: auto;
  aspect-ratio: 716 / 428;
  object-fit: contain;
  object-position: center;
}

.community-card:not(.community-card-wide) {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: stretch;
  min-height: 178px;
}

.community-card:not(.community-card-wide) img {
  width: 168px;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.community-card:nth-child(2) img {
  object-position: center top;
}

.community-card div {
  padding: 20px;
}

.community-card strong {
  display: block;
  margin-top: 5px;
  color: #101a2c;
  font-size: 17px;
  line-height: 1.35;
}

.community-note {
  max-width: 740px;
  margin: 22px auto 0;
  text-align: center;
}

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

.benefit-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(18, 43, 76, 0.1);
}

.checkmark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(51, 231, 212, 0.18), rgba(54, 182, 255, 0.18));
  color: #0aae7d;
  font-size: 25px;
  font-weight: 950;
}

.benefit-card p {
  margin: 0;
  color: #59687c;
  font-size: 16px;
  line-height: 1.65;
}

.center-action {
  margin-top: 32px;
  text-align: center;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.registration-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #526174;
  font-size: 18px;
  line-height: 1.7;
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.86)),
    radial-gradient(circle at top right, rgba(141, 92, 255, 0.12), transparent 48%);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field span,
.experience-field legend {
  color: #172236;
  font-size: 15px;
  font-weight: 850;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(111, 130, 159, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #101a2c;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  border-color: rgba(54, 182, 255, 0.82);
  box-shadow: 0 0 0 4px rgba(54, 182, 255, 0.14);
}

.experience-field {
  display: grid;
  gap: 10px;
  margin: 6px 0 22px;
  padding: 0;
  border: 0;
}

.experience-field legend {
  margin-bottom: 6px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(111, 130, 159, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #2c384c;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.radio-card:hover {
  transform: translateY(-1px);
  border-color: rgba(54, 182, 255, 0.54);
  background: #fff;
}

.radio-card input {
  width: 18px;
  height: 18px;
  accent-color: #346cff;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
}

.site-footer {
  padding: 28px 0 42px;
}

.site-footer p {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.assistant-body {
  background:
    radial-gradient(circle at 12% 12%, rgba(54, 182, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(141, 92, 255, 0.24), transparent 28rem),
    linear-gradient(135deg, #f9fcff, #edf6ff 48%, #f8fbff);
}

.assistant-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  padding: 54px 20px 78px;
}

.assistant-panel {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.assistant-orb {
  position: absolute;
  inset: -120px -90px auto auto;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 231, 212, 0.26), transparent 68%);
  pointer-events: none;
}

.assistant-logo-large {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}

.assistant-panel h1 {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(40px, 7vw, 68px);
}

.assistant-panel .lead {
  margin-inline: auto;
}

.connect-card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 34px auto 24px;
  padding: 22px;
  border: 1px solid rgba(111, 130, 159, 0.2);
  border-radius: 28px;
  background: rgba(248, 251, 255, 0.88);
}

.connect-title {
  margin-bottom: 16px;
  color: #101a2c;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.channel-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  color: #46566d;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(22, 48, 85, 0.08);
}

.back-link {
  display: inline-flex;
  text-decoration: none;
}

@media (max-width: 940px) {
  .hero-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .registration-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .lead,
  .registration-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    width: min(470px, 100%);
    margin-inline: auto;
  }

  .community-gallery,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .community-gallery {
    grid-template-areas: none;
  }

  .community-card-wide,
  .community-card:nth-child(2),
  .community-card:nth-child(3) {
    grid-area: auto;
  }

  .community-card:not(.community-card-wide) {
    display: flex;
    min-height: 0;
  }

  .community-card:not(.community-card-wide) img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding: 10px;
    gap: 10px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 38px;
    max-width: 132px;
    padding: 0 12px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
  }

  .screen-section {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .section-block {
    padding: 70px 0;
  }

  h1 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
  }

  h2 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.08;
  }

  .lead,
  .section-heading p:not(.eyebrow) {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .dashboard-card,
  .lead-form,
  .assistant-panel {
    border-radius: 26px;
  }

  .dashboard-card,
  .lead-form {
    padding: 22px;
  }

  .score-ring {
    width: 164px;
    height: 164px;
  }

  .score-ring span {
    font-size: 44px;
  }

  .community-card-wide img,
  .community-card:not(.community-card-wide) img {
    height: auto;
  }

  .benefit-card {
    min-height: auto;
  }

  .assistant-main {
    padding-top: 42px;
  }
}
