*{box-sizing:border-box;margin:0;padding:0;}
:root{
  --page:#f4f7fb;
  --panel:#ffffff;
  --text:#101b2d;
  --muted:#667791;
  --soft:#e8eef6;
  --line:#d9e2ee;
  --blue:#2f6cf6;
  --blue-2:#43a1cf;
  --blue-soft:#edf4ff;
  --green:#267a47;
  --shadow:0 22px 60px rgba(34,53,84,.10);
}
body{
  font-family:'DM Sans',sans-serif;
  background:
    radial-gradient(circle at 50% -12%,rgba(83,142,255,.18),transparent 36rem),
    linear-gradient(180deg,#f7f9fd 0%,var(--page) 50%,#eef4ff 100%);
  color:var(--text);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
}
button,input{font-family:'DM Sans',sans-serif;}
.signup-shell{
  flex:1;
  width:100%;
  padding:48px 24px 72px;
}
.signup-onboarding{
  width:min(1360px,100%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
  margin-bottom:54px;
}
.logo-bar{
  width:7px;
  height:31px;
  background:linear-gradient(180deg,#2563eb,#47b7c9);
  border-radius:999px;
  box-shadow:0 10px 26px rgba(37,99,235,.28);
}
.logo-txt{
  font-family:'Syne',sans-serif;
  font-size:24px;
  font-weight:800;
  line-height:1;
  color:var(--text);
  letter-spacing:-.045em;
}
.signup-hero{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.signup-hero h1{
  font-family:'Syne',sans-serif;
  font-size:clamp(46px,5.5vw,76px);
  line-height:.93;
  font-weight:800;
  letter-spacing:-.055em;
  color:var(--text);
}
.signup-hero p{
  width:min(640px,100%);
  margin:22px auto 0;
  color:var(--muted);
  font-size:clamp(18px,2vw,25px);
  line-height:1.28;
  font-weight:600;
}
.signup-plan-section{
  width:100%;
  margin-top:42px;
}
.billing-choice{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin:0 auto 42px;
  padding:7px;
  min-height:60px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#e8eef6;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.55),0 10px 26px rgba(26,45,75,.07);
}
.billing-choice button{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#63738a;
  padding:14px 24px;
  font-size:17px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  transition:background .18s,color .18s,box-shadow .18s,transform .18s;
}
.billing-choice button:hover{color:var(--text);}
.billing-choice button.active{
  color:var(--text);
  background:#fff;
  box-shadow:0 9px 24px rgba(29,45,71,.12);
}
.billing-choice span{
  display:inline-block;
  margin-left:8px;
  padding:4px 10px;
  color:var(--green);
  background:#def4e7;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  vertical-align:middle;
}
.signup-plan-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
  width:100%;
}
.signup-plan-option{
  appearance:none;
  -webkit-appearance:none;
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:646px;
  width:100%;
  min-width:0;
  padding:44px 38px 38px;
  border:1px solid var(--line);
  border-radius:28px;
  background:var(--panel);
  color:var(--text);
  text-align:left;
  cursor:pointer;
  box-shadow:0 10px 34px rgba(33,51,81,.05);
  transition:border-color .18s,box-shadow .18s,transform .18s;
}
.signup-plan-option:hover{
  border-color:#9fb7d8;
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.signup-plan-option.active{
  border-color:var(--blue);
  box-shadow:0 0 0 2px rgba(47,108,246,.86),0 24px 70px rgba(47,108,246,.16);
}
.signup-plan-option.popular{padding-top:44px;}
.signup-plan-option:disabled{
  cursor:not-allowed;
  opacity:.84;
}
.signup-plan-option:disabled:hover{
  border-color:var(--line);
  transform:none;
  box-shadow:0 10px 34px rgba(33,51,81,.05);
}
.coming-soon-option{
  background:linear-gradient(180deg,#fff,#f8fbff);
}
.popular-tag{
  position:absolute;
  top:-16px;
  left:50%;
  transform:translateX(-50%);
  padding:9px 24px 8px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 14px 24px rgba(47,108,246,.20);
}
.popular-tag.muted{
  background:#eef3fb;
  color:#60738d;
  box-shadow:none;
}
.plan-name{
  display:block;
  font-size:29px;
  line-height:1;
  font-weight:900;
  color:var(--text);
  letter-spacing:-.025em;
}
.signup-plan-copy{
  display:block;
  min-height:48px;
  margin-top:14px;
  color:var(--muted);
  font-size:18px;
  line-height:1.32;
  font-weight:700;
}
.plan-price-row{
  display:flex;
  align-items:flex-end;
  gap:14px;
  min-width:0;
  margin:60px 0 36px;
}
.coming-soon-option .plan-price-row strong{font-size:52px;letter-spacing:-.045em;}
.plan-price-row strong{
  display:block;
  color:var(--text);
  font-family:'Syne',sans-serif;
  font-size:68px;
  line-height:.78;
  font-weight:800;
  letter-spacing:-.06em;
}
.plan-price-row span{
  color:var(--muted);
  font-size:17px;
  font-weight:800;
  line-height:1.2;
}
.signup-plan-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  width:100%;
  border:2px solid #cfdaea;
  border-radius:12px;
  color:#2f57d6;
  background:#fff;
  font-size:19px;
  font-weight:900;
  line-height:1;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.45);
}
.signup-plan-option.active .signup-plan-cta{
  border-color:transparent;
  color:#fff;
  background:linear-gradient(135deg,#3969e8,#43a1cf);
  box-shadow:0 14px 24px rgba(47,108,246,.16);
}
.feature-list{
  display:flex;
  flex-direction:column;
  gap:17px;
  margin-top:34px;
  color:#52647b;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
}
.feature-list>span{
  display:grid;
  grid-template-columns:26px 1fr;
  align-items:start;
  gap:14px;
  min-width:0;
}
.feature-list i{
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#e9f1ff;
  color:var(--blue);
  font-style:normal;
  font-size:17px;
  font-weight:900;
}
.feature-plus{
  color:var(--text);
  font-weight:900;
}
.feature-plus i{
  background:var(--text);
  color:#fff;
}
.enterprise-note{
  margin:30px auto 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.4;
  font-weight:700;
}
.enterprise-note a{
  color:#285fe5;
  text-decoration:none;
  font-weight:900;
}
.enterprise-note a:hover{text-decoration:underline;}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.signup-form-card{
  width:min(680px,100%);
  margin:70px auto 0;
  padding:34px;
}
.form-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}
.form-heading h2{
  color:var(--text);
  font-size:26px;
  font-weight:900;
  letter-spacing:-.02em;
}
.form-heading p{
  margin-top:6px;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
  font-weight:700;
}
.form-heading a{
  color:#285fe5;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}
.form-heading a:hover{text-decoration:underline;}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field{margin-bottom:0;}
.field-password{grid-column:1/-1;}
.field label{
  display:block;
  margin-bottom:8px;
  color:#7b8aa0;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.field input{
  width:100%;
  min-height:52px;
  border:1px solid #cad6e6;
  border-radius:12px;
  background:#f9fbfe;
  color:var(--text);
  padding:12px 15px;
  font-size:15px;
  font-weight:700;
  outline:none;
  transition:border-color .16s,background .16s,box-shadow .16s;
}
.field input::placeholder{color:#9aa8ba;}
.field input:focus{
  border-color:var(--blue);
  background:#fff;
  box-shadow:0 0 0 4px rgba(47,108,246,.12);
}
.btn-primary{
  width:100%;
  min-height:56px;
  margin-top:18px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,#3969e8,#43a1cf);
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  transition:opacity .15s,transform .15s,box-shadow .15s;
  box-shadow:0 16px 30px rgba(47,108,246,.22);
}
.btn-primary:hover{
  opacity:.94;
  transform:translateY(-1px);
}
.btn-primary:disabled{opacity:.55;cursor:not-allowed;transform:none;}
.legal-note{
  margin:12px 4px 0;
  color:#6f7e91;
  font-size:12px;
  line-height:1.5;
  text-align:center;
}
.legal-note a{
  color:var(--blue);
  font-weight:900;
  text-decoration:none;
}
.legal-note a:hover{text-decoration:underline;}
.divider{
  display:flex;
  align-items:center;
  gap:14px;
  margin:22px 0;
  color:#8a98aa;
  font-size:13px;
  font-weight:800;
}
.divider::before,.divider::after{
  content:'';
  flex:1;
  height:1px;
  background:#dce5f0;
}
.btn-google{
  width:100%;
  min-height:54px;
  border:1px solid #cad6e6;
  border-radius:13px;
  background:#fff;
  color:var(--text);
  padding:12px 16px;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:border-color .15s,box-shadow .15s,transform .15s;
}
.btn-google:hover{
  border-color:#9fb7d8;
  box-shadow:0 10px 24px rgba(33,51,81,.07);
  transform:translateY(-1px);
}
.links{
  margin-top:22px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}
.links a{
  color:#285fe5;
  text-decoration:none;
  font-weight:900;
}
.links a:hover{text-decoration:underline;}
.error{
  display:none;
  margin-bottom:18px;
  padding:12px 14px;
  border:1px solid #f2a1a1;
  border-radius:12px;
  background:#fff3f3;
  color:#b42323;
  font-size:14px;
  font-weight:700;
  line-height:1.4;
}
.error.show{display:block;}
.plan-note{
  margin-bottom:20px;
  padding:13px 15px;
  border:1px solid #cde9d7;
  border-radius:13px;
  background:#f1fbf5;
  color:#50677b;
  font-size:14px;
  font-weight:700;
  line-height:1.5;
}
.plan-note strong{color:#17823d;}
.success-screen{
  display:none;
  width:min(560px,100%);
  margin:10vh auto 0;
  padding:44px 34px;
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.success-screen.show{display:block;}
.success-icon{
  width:70px;
  height:70px;
  margin:0 auto 18px;
  border-radius:50%;
  background:linear-gradient(135deg,#3969e8,#43a1cf);
  position:relative;
  box-shadow:0 16px 30px rgba(47,108,246,.18);
}
.success-icon::before{
  content:'';
  position:absolute;
  inset:20px 16px 18px;
  border:3px solid #fff;
  border-radius:5px;
}
.success-icon::after{
  content:'';
  position:absolute;
  left:22px;
  right:22px;
  top:29px;
  height:15px;
  border-left:3px solid #fff;
  border-bottom:3px solid #fff;
  transform:rotate(-45deg);
}
.success-screen h2{
  color:var(--text);
  font-size:28px;
  font-weight:900;
  letter-spacing:-.02em;
  margin-bottom:10px;
}
.success-screen p{
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
  font-weight:700;
}
@media(max-width:1180px){
  .signup-plan-grid{gap:18px;}
  .signup-plan-option{padding:36px 28px 32px;min-height:630px;}
  .plan-price-row strong{font-size:58px;}
  .feature-list{font-size:16px;}
}
@media(max-width:930px){
  .signup-shell{padding:36px 18px 58px;}
  .logo{margin-bottom:40px;}
  .signup-plan-grid{grid-template-columns:1fr;max-width:560px;margin:0 auto;}
  .signup-plan-option{min-height:auto;}
  .plan-price-row{margin:44px 0 28px;}
  .signup-form-card{margin-top:44px;}
}
@media(max-width:640px){
  .signup-shell{padding:28px 14px 48px;}
  .logo-txt{font-size:20px;}
  .signup-hero h1{font-size:42px;line-height:.98;}
  .signup-hero p{font-size:17px;}
  .signup-plan-grid{width:100%;max-width:100%;overflow:hidden;}
  .billing-choice{
    width:100%;
    max-width:390px;
    min-height:54px;
    margin-bottom:30px;
  }
  .billing-choice button{
    flex:1;
    padding:12px 10px;
    font-size:14px;
  }
  .billing-choice span{
    display:block;
    width:max-content;
    margin:7px auto 0;
    font-size:11px;
  }
  .signup-plan-option{border-radius:22px;padding:30px 24px;}
  .plan-name{font-size:25px;}
  .signup-plan-copy{font-size:16px;min-height:auto;}
  .plan-price-row strong{font-size:52px;}
  .coming-soon-option .plan-price-row strong{font-size:42px;}
  .plan-price-row{flex-wrap:wrap;gap:10px;}
  .signup-plan-cta{font-size:17px;}
  .enterprise-note{font-size:15px;}
  .signup-form-card{padding:24px;border-radius:22px;}
  .form-heading{display:block;}
  .form-heading a{display:inline-block;margin-top:10px;}
  .form-grid{grid-template-columns:1fr;}
}

/* Datylux dark theme refresh */
:root{
  --page:#061221;
  --panel:#0a111c;
  --panel-2:#0d1727;
  --text:#dde8f5;
  --muted:#7a9bbf;
  --soft:#10233a;
  --line:#1e3048;
  --blue:#2563eb;
  --blue-2:#0891b2;
  --blue-soft:rgba(37,99,235,.14);
  --green:#22d778;
  --shadow:0 28px 70px rgba(0,0,0,.38);
}
body{
  background:
    radial-gradient(900px 520px at 50% -14%,rgba(37,99,235,.22),transparent 64%),
    radial-gradient(620px 420px at 90% 18%,rgba(8,145,178,.12),transparent 64%),
    linear-gradient(180deg,#071525 0%,#061221 54%,#071322 100%);
  color:var(--text);
}
.signup-shell{position:relative;overflow:hidden;}
.signup-shell::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.48;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
}
.logo{color:var(--text);}
.logo-txt{color:var(--text);}
.signup-hero h1{color:var(--text);text-shadow:0 18px 55px rgba(0,0,0,.28);}
.signup-hero p{color:#aebfd4;}
.billing-choice{
  background:rgba(13,23,39,.84);
  border-color:rgba(122,155,191,.24);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 16px 36px rgba(0,0,0,.28);
}
.billing-choice button{color:#88a6c6;}
.billing-choice button:hover{color:#eef6ff;}
.billing-choice button.active{
  color:#eef6ff;
  background:linear-gradient(160deg,rgba(37,99,235,.34),rgba(8,145,178,.18));
  box-shadow:0 12px 28px rgba(37,99,235,.18),inset 0 1px 0 rgba(255,255,255,.08);
}
.billing-choice span{
  color:#9cf2b7;
  background:rgba(34,215,120,.12);
  border:1px solid rgba(34,215,120,.18);
}
.signup-plan-option{
  background:
    radial-gradient(120% 70% at 50% 0%,rgba(37,99,235,.08),transparent 58%),
    linear-gradient(165deg,var(--panel-2),var(--panel));
  border-color:rgba(122,155,191,.2);
  color:var(--text);
  box-shadow:0 18px 45px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.035);
}
.signup-plan-option:hover{
  border-color:rgba(90,166,255,.52);
  box-shadow:0 28px 70px rgba(0,0,0,.36),0 0 34px rgba(37,99,235,.12);
}
.signup-plan-option.active{
  border-color:#3f8bff;
  box-shadow:0 0 0 2px rgba(63,139,255,.64),0 30px 80px rgba(37,99,235,.18),inset 0 1px 0 rgba(255,255,255,.06);
}
.popular-tag{
  background:linear-gradient(135deg,#2563eb,#0891b2);
  box-shadow:0 16px 28px rgba(37,99,235,.26);
}
.plan-name,
.feature-plus,
.form-heading h2,
.success-screen h2{color:var(--text);}
  .signup-plan-copy,
  .plan-price-row span,
  .enterprise-note,
  .legal-note,
  .links,
  .success-screen p{color:var(--muted);}
.plan-price-row strong{color:#eef6ff;}
.signup-plan-cta{
  border-color:rgba(122,155,191,.34);
  color:#9ec8ff;
  background:rgba(255,255,255,.025);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
}
.signup-plan-option.active .signup-plan-cta,
.btn-primary{
  background:linear-gradient(135deg,#2563eb,#0891b2);
  box-shadow:0 18px 36px rgba(37,99,235,.24),inset 0 1px 0 rgba(255,255,255,.12);
}
.feature-list{color:#aebfd4;}
.feature-list i{
  background:rgba(37,99,235,.16);
  color:#70adff;
  border:1px solid rgba(63,139,255,.2);
}
.feature-plus i{
  background:linear-gradient(135deg,#2563eb,#0891b2);
  color:#fff;
  border-color:transparent;
}
  .enterprise-note a,
  .form-heading a,
  .legal-note a,
  .links a{color:#5aa6ff;}
.card,
.success-screen{
  background:
    radial-gradient(120% 70% at 50% 0%,rgba(37,99,235,.07),transparent 58%),
    linear-gradient(165deg,var(--panel-2),var(--panel));
  border-color:rgba(122,155,191,.2);
  box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.035);
}
.form-heading p{color:var(--muted);}
.field label{color:#87a3c1;}
.field input{
  border-color:rgba(122,155,191,.26);
  background:#07101d;
  color:var(--text);
}
.field input::placeholder{color:#607d9b;}
.field input:focus{
  border-color:#3f8bff;
  background:#081524;
  box-shadow:0 0 0 4px rgba(37,99,235,.18);
}
.divider{color:#7893b1;}
.divider::before,.divider::after{background:rgba(122,155,191,.2);}
.btn-google{
  background:#0b1626;
  color:var(--text);
  border-color:rgba(122,155,191,.26);
}
.btn-google:hover{
  border-color:rgba(90,166,255,.48);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}
.error{
  border-color:rgba(248,113,113,.42);
  background:rgba(127,29,29,.2);
  color:#fecaca;
}
.plan-note{
  border-color:rgba(34,215,120,.26);
  background:rgba(34,215,120,.08);
  color:#aebfd4;
}
.plan-note strong{color:#8df7b0;}

@media(max-width:640px){
  .signup-hero h1{font-size:40px;}
  .signup-plan-option{border-radius:20px;}
  .signup-form-card{border-radius:20px;}
}
