:root {
  --dmw-ink: #f7f8fc;
  --dmw-muted: #aeb5c4;
  --dmw-deep: #0f121a;
  --dmw-panel: #181d28;
  --dmw-panel-2: #202635;
  --dmw-line: rgba(255, 255, 255, 0.11);
  --dmw-indigo: #7f83ee;
  --dmw-indigo-strong: #5759be;
  --dmw-violet: #9d54e5;
  --dmw-pink: #dc519b;
  --dmw-mint: #65e6b4;
  --dmw-radius: 22px;
  --dmw-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.dmw-mail-deepdive,
.dmw-mail-deepdive *,
.dmw-smtp-page,
.dmw-smtp-page * {
  box-sizing: border-box;
}

.dmw-mail-deepdive,
.dmw-smtp-page {
  color: var(--dmw-ink);
  font-family: inherit;
}

.dmw-mail-shell {
  width: min(1180px, calc(100% - 44px));
  max-width: 100%;
  margin-inline: auto;
}

.dmw-smtp-hero-grid > *,
.dmw-auth-board > *,
.dmw-mail-careflow > *,
.dmw-channel-grid > *,
.dmw-smtp-plans > *,
.dmw-smtp-included > *,
.dmw-smtp-feature-grid > *,
.dmw-smtp-use-grid > *,
.dmw-smtp-process > * {
  min-width: 0;
}

.dmw-mail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px !important;
  color: #aeb2ff;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dmw-mail-kicker::before {
  width: 23px;
  height: 1px;
  background: currentColor;
  content: "";
}

.dmw-mail-deepdive h2,
.dmw-smtp-page h1,
.dmw-smtp-page h2,
.dmw-smtp-page h3 {
  color: #fff;
  text-wrap: balance;
}

.dmw-mail-deepdive p,
.dmw-smtp-page p {
  text-wrap: pretty;
}

.dmw-mail-section-title {
  max-width: 100%;
  max-width: 850px;
  margin: 0 !important;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.dmw-mail-section-lead {
  max-width: 760px;
  margin: 23px 0 0 !important;
  color: var(--dmw-muted);
  font-size: clamp(1.02rem, 1.7vw, 1.19rem);
  line-height: 1.72;
}

.dmw-mail-deepdive {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(87, 89, 190, 0.18), transparent 31%),
    linear-gradient(180deg, #11141c, #0e1118);
}

.dmw-mail-deepdive::before {
  position: absolute;
  top: 220px;
  left: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.012), 0 0 0 140px rgba(255, 255, 255, 0.008);
  content: "";
  pointer-events: none;
}

.dmw-auth-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(44px, 6vw, 72px);
}

.dmw-auth-board::before {
  position: absolute;
  z-index: 0;
  top: 49px;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 131, 238, 0.65) 15%, rgba(220, 81, 155, 0.65) 85%, transparent);
  content: "";
}

.dmw-auth-packet {
  position: absolute;
  z-index: 3;
  top: 44px;
  left: 14%;
  width: 11px;
  height: 11px;
  border: 2px solid #12151e;
  border-radius: 50%;
  background: var(--dmw-mint);
  box-shadow: 0 0 0 5px rgba(101, 230, 180, 0.14), 0 0 22px rgba(101, 230, 180, 0.9);
  animation: dmw-auth-travel 7s cubic-bezier(0.45, 0, 0.18, 1) infinite;
}

@keyframes dmw-auth-travel {
  0%, 9% { left: 14%; opacity: 0; }
  14%, 29% { left: 16.6%; opacity: 1; }
  43%, 58% { left: 49.6%; opacity: 1; }
  72%, 88% { left: 82.6%; opacity: 1; }
  94%, 100% { left: 85%; opacity: 0; }
}

.dmw-auth-card {
  position: relative;
  z-index: 1;
  min-height: 345px;
  padding: 27px;
  border: 1px solid var(--dmw-line);
  border-radius: var(--dmw-radius);
  background: linear-gradient(155deg, rgba(34, 40, 56, 0.96), rgba(21, 25, 36, 0.98));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.23);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.dmw-auth-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 131, 238, 0.65);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.32);
}

.dmw-auth-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 29px;
}

.dmw-auth-card__number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(158, 164, 255, 0.35);
  border-radius: 14px;
  background: rgba(127, 131, 238, 0.1);
  color: #c7caff;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dmw-auth-card__state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b5edda;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dmw-auth-card__state::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dmw-mint);
  box-shadow: 0 0 12px rgba(101, 230, 180, 0.75);
  content: "";
}

.dmw-auth-card h3 {
  margin: 0 0 13px !important;
  font-size: 1.52rem;
  line-height: 1.15;
}

.dmw-auth-card p {
  margin: 0 !important;
  color: #b8bfcd;
  font-size: 0.96rem;
  line-height: 1.7;
}

.dmw-auth-card__care {
  display: block;
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8eaf3;
  font-size: 0.83rem;
  line-height: 1.55;
}

.dmw-auth-card__care strong {
  color: #aeb2ff;
}

.dmw-mail-careflow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  margin-top: clamp(72px, 9vw, 120px);
  padding: clamp(29px, 5vw, 56px);
  border: 1px solid var(--dmw-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.dmw-mail-careflow h3 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.dmw-mail-careflow > div > p {
  margin: 18px 0 0 !important;
  color: var(--dmw-muted);
  line-height: 1.67;
}

.dmw-mail-careflow ol {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  counter-reset: dmw-step;
}

.dmw-mail-careflow li {
  position: relative;
  min-height: 78px;
  padding: 18px 18px 18px 66px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(13, 16, 24, 0.48);
  color: #c6cbd6;
  line-height: 1.55;
  counter-increment: dmw-step;
}

.dmw-mail-careflow li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(127, 131, 238, 0.14);
  color: #c5c8ff;
  content: counter(dmw-step, decimal-leading-zero);
  font-size: 0.69rem;
  font-weight: 900;
}

.dmw-mail-careflow li strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.dmw-channel-split {
  margin-top: clamp(86px, 10vw, 138px);
}

.dmw-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.dmw-channel-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(27px, 4vw, 39px);
  border: 1px solid var(--dmw-line);
  border-radius: 23px;
  background: linear-gradient(150deg, #1d2230, #141821);
}

.dmw-channel-card::after {
  position: absolute;
  right: -68px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(127, 131, 238, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(127, 131, 238, 0.035), 0 0 0 76px rgba(127, 131, 238, 0.018);
  content: "";
}

.dmw-channel-card--accent {
  background: linear-gradient(145deg, rgba(71, 73, 166, 0.33), #171a26 65%);
  border-color: rgba(127, 131, 238, 0.38);
}

.dmw-channel-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border: 1px solid rgba(158, 164, 255, 0.35);
  border-radius: 16px;
  background: rgba(127, 131, 238, 0.12);
  color: #c7caff;
}

.dmw-channel-icon svg {
  width: 26px;
  height: 26px;
}

.dmw-channel-card h3 {
  margin: 0 0 13px !important;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.dmw-channel-card p {
  max-width: 500px;
  margin: 0 !important;
  color: #b8bfcd;
  line-height: 1.68;
}

.dmw-channel-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.dmw-channel-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #e2e5ec;
  font-size: 0.9rem;
}

.dmw-channel-list li::before {
  color: var(--dmw-mint);
  content: "✓";
  font-weight: 900;
}

.dmw-mail-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  margin-top: 27px;
  padding: 0 20px;
  border: 1px solid #676bd0;
  border-radius: 11px;
  background: #5759be;
  color: #fff !important;
  font-weight: 850;
  text-decoration: none !important;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.dmw-mail-button:hover {
  transform: translateY(-2px);
  border-color: #777be0;
  background: #676bd0;
}

.dmw-mail-button--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.dmw-mail-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.dmw-mail-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* SMTP page */
.page-id-8580 .entry-hero {
  display: none;
}

.page-id-8580 .content-area {
  margin: 0 !important;
}

.page-id-8580 .content-container,
.page-id-8580 .content-wrap,
.page-id-8580 .entry-content-wrap,
.page-id-8580 .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dmw-smtp-page {
  overflow: hidden;
  background: var(--dmw-deep);
}

.dmw-smtp-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(156px, 14vw, 205px) 0 clamp(85px, 9vw, 122px);
  background:
    radial-gradient(circle at 78% 26%, rgba(93, 74, 196, 0.31), transparent 31%),
    radial-gradient(circle at 10% 91%, rgba(220, 81, 155, 0.12), transparent 31%),
    linear-gradient(135deg, #171a24, #10131d 68%);
}

.dmw-smtp-hero::before {
  position: absolute;
  z-index: -1;
  top: -270px;
  right: -210px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(255, 255, 255, 0.014), 0 0 0 164px rgba(255, 255, 255, 0.009);
  content: "";
}

.dmw-smtp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(45px, 7vw, 88px);
  align-items: center;
}

.dmw-smtp-hero h1 {
  max-width: 100%;
  max-width: 720px;
  margin: 0 !important;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
}

.dmw-smtp-hero__lead {
  max-width: 690px;
  margin: 28px 0 0 !important;
  color: #c5cad5;
  font-size: clamp(1.07rem, 1.7vw, 1.26rem);
  line-height: 1.68;
}

.dmw-smtp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dmw-smtp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  margin-top: 25px;
  color: #c5cad5;
  font-size: 0.82rem;
}

.dmw-smtp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dmw-smtp-trust span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dmw-mint);
  box-shadow: 0 0 12px rgba(101, 230, 180, 0.6);
  content: "";
}

.dmw-route-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--dmw-shadow);
  backdrop-filter: blur(14px);
}

.dmw-route-card__label {
  color: #aeb2ff;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dmw-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 83px;
}

.dmw-route::before {
  position: absolute;
  top: 34px;
  left: 13%;
  width: 74%;
  height: 2px;
  background: linear-gradient(90deg, #777be0, #b15bda 48%, #dc519b);
  content: "";
}

.dmw-route__node {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.dmw-route__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: #202534;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.27);
  color: #d9dbff;
}

.dmw-route__node strong {
  display: block;
  color: #fff;
  font-size: 0.83rem;
}

.dmw-route__node small {
  display: block;
  margin-top: 4px;
  color: #9ca4b3;
  font-size: 0.7rem;
}

.dmw-route__pulse {
  position: absolute;
  z-index: 3;
  top: 110px;
  left: 17%;
  width: 12px;
  height: 12px;
  border: 2px solid #161923;
  border-radius: 50%;
  background: var(--dmw-mint);
  box-shadow: 0 0 0 6px rgba(101, 230, 180, 0.13), 0 0 22px rgba(101, 230, 180, 0.85);
  animation: dmw-route-mail 4.8s ease-in-out infinite;
}

@keyframes dmw-route-mail {
  0%, 7% { left: 17%; opacity: 0; }
  13%, 32% { left: 21%; opacity: 1; }
  48%, 61% { left: 49%; opacity: 1; }
  78%, 91% { left: 78%; opacity: 1; }
  97%, 100% { left: 82%; opacity: 0; }
}

.dmw-route-card__status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 66px;
}

.dmw-route-card__status span {
  padding: 9px 7px;
  border: 1px solid rgba(101, 230, 180, 0.16);
  border-radius: 9px;
  background: rgba(101, 230, 180, 0.055);
  color: #b5edda;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
}

.dmw-smtp-strip {
  position: relative;
  z-index: 2;
  background: #11141c;
}

.dmw-smtp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  transform: translateY(-31px);
  margin-bottom: -31px;
}

.dmw-smtp-strip__item {
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--dmw-line);
  border-radius: 15px;
  background: #191e2a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.21);
}

.dmw-smtp-strip__item small {
  display: block;
  margin-bottom: 8px;
  color: #aeb2ff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dmw-smtp-strip__item strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.dmw-smtp-section {
  padding: clamp(82px, 10vw, 132px) 0;
  background: #11141c;
}

.dmw-smtp-section--alt {
  background: #0d1017;
}

.dmw-smtp-heading {
  max-width: 780px;
}

.dmw-smtp-heading--center {
  margin-inline: auto;
  text-align: center;
}

.dmw-smtp-heading h2 {
  margin: 0 !important;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.dmw-smtp-heading p {
  margin: 21px 0 0 !important;
  color: var(--dmw-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.dmw-smtp-heading--center p {
  margin-inline: auto !important;
}

.dmw-smtp-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: clamp(42px, 6vw, 65px);
}

.dmw-smtp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(27px, 3vw, 35px);
  border: 1px solid var(--dmw-line);
  border-radius: 22px;
  background: linear-gradient(155deg, #202635, #161a24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.23);
  transition: transform 0.27s ease, border-color 0.27s ease;
}

.dmw-smtp-plan:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 131, 238, 0.68);
}

.dmw-smtp-plan--featured {
  border-color: rgba(127, 131, 238, 0.58);
  background: linear-gradient(155deg, rgba(71, 73, 166, 0.45), #171b26 58%);
}

.dmw-smtp-plan__badge {
  position: absolute;
  top: 0;
  right: 27px;
  padding: 7px 12px;
  border-radius: 0 0 10px 10px;
  background: #5759be;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dmw-smtp-plan__name {
  margin: 0 !important;
  font-size: 1.72rem;
}

.dmw-smtp-plan__volume {
  margin: 9px 0 0 !important;
  color: #aeb5c4;
  font-size: 0.88rem;
}

.dmw-smtp-plan__price {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 31px;
  color: #fff;
}

.dmw-smtp-plan__price span:first-child {
  margin-top: 7px;
  font-size: 1rem;
}

.dmw-smtp-plan__price strong {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.dmw-smtp-plan__price small {
  align-self: flex-end;
  margin-bottom: 5px;
  color: #c9ced8;
}

.dmw-smtp-plan__tax,
.dmw-smtp-plan__setup {
  margin: 7px 0 0 !important;
  color: #aeb5c4;
  font-size: 0.78rem;
}

.dmw-smtp-plan__setup {
  margin-top: 17px !important;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.dmw-smtp-plan ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.dmw-smtp-plan li {
  display: flex;
  gap: 9px;
  color: #dfe2ea;
  font-size: 0.88rem;
  line-height: 1.45;
}

.dmw-smtp-plan li::before {
  color: var(--dmw-mint);
  content: "✓";
  font-weight: 900;
}

.dmw-smtp-plan .dmw-mail-button {
  width: 100%;
  margin-top: auto;
}

.dmw-smtp-ip-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 25px;
  border: 1px solid rgba(158, 164, 255, 0.28);
  border-radius: 17px;
  background: rgba(127, 131, 238, 0.07);
}

.dmw-smtp-ip-note__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(127, 131, 238, 0.14);
  color: #c7caff;
  font-weight: 900;
}

.dmw-smtp-ip-note strong {
  display: block;
  color: #fff;
}

.dmw-smtp-ip-note p {
  margin: 4px 0 0 !important;
  color: #b7becc;
  font-size: 0.89rem;
  line-height: 1.55;
}

.dmw-smtp-ip-note a {
  color: #c7caff !important;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.dmw-smtp-included {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.dmw-smtp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dmw-smtp-feature {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--dmw-line);
  border-radius: 17px;
  background: #181d28;
}

.dmw-smtp-feature__index {
  color: #aeb2ff;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.dmw-smtp-feature h3 {
  margin: 24px 0 9px !important;
  font-size: 1.07rem;
}

.dmw-smtp-feature p {
  margin: 0 !important;
  color: #aeb5c4;
  font-size: 0.88rem;
  line-height: 1.62;
}

.dmw-smtp-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 43px;
}

.dmw-smtp-use {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--dmw-line);
  border-radius: 22px;
  background: linear-gradient(150deg, #202635, #171b25);
}

.dmw-smtp-use__tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 99px;
  background: rgba(127, 131, 238, 0.12);
  color: #c7caff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dmw-smtp-use h3 {
  margin: 24px 0 11px !important;
  font-size: clamp(1.55rem, 2.7vw, 2rem);
}

.dmw-smtp-use p {
  margin: 0 !important;
  color: #b7becc;
  line-height: 1.68;
}

.dmw-smtp-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 45px;
  counter-reset: dmw-smtp-step;
}

.dmw-smtp-process__step {
  position: relative;
  min-height: 225px;
  padding: 25px;
  border: 1px solid var(--dmw-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  counter-increment: dmw-smtp-step;
}

.dmw-smtp-process__step::before {
  display: block;
  margin-bottom: 48px;
  color: #aeb2ff;
  content: counter(dmw-smtp-step, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dmw-smtp-process__step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: -14px;
  width: 16px;
  height: 1px;
  background: #777be0;
  content: "";
}

.dmw-smtp-process__step h3 {
  margin: 0 0 9px !important;
  font-size: 1.04rem;
}

.dmw-smtp-process__step p {
  margin: 0 !important;
  color: #aeb5c4;
  font-size: 0.86rem;
  line-height: 1.59;
}

.dmw-smtp-faq {
  max-width: 850px;
  margin: 44px auto 0;
}

.dmw-smtp-faq details {
  border-bottom: 1px solid var(--dmw-line);
}

.dmw-smtp-faq summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 800;
  list-style: none;
}

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

.dmw-smtp-faq summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: #c7caff;
  content: "+";
  transition: transform 0.22s ease;
}

.dmw-smtp-faq details[open] summary::after {
  transform: rotate(45deg);
}

.dmw-smtp-faq details p {
  max-width: 730px;
  margin: 0 0 24px !important;
  color: #aeb5c4;
  line-height: 1.68;
}

.dmw-smtp-cta {
  padding: 0 0 clamp(82px, 10vw, 132px);
  background: #0d1017;
}

.dmw-smtp-cta__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(35px, 6vw, 66px);
  border: 1px solid rgba(158, 164, 255, 0.28);
  border-radius: 27px;
  background: linear-gradient(135deg, rgba(71, 73, 166, 0.38), #191d29 60%);
  text-align: center;
}

.dmw-smtp-cta__inner::after {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.018), 0 0 0 100px rgba(255, 255, 255, 0.01);
  content: "";
}

.dmw-smtp-cta h2 {
  max-width: 720px;
  margin: 0 auto !important;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.dmw-smtp-cta p {
  max-width: 680px;
  margin: 20px auto 0 !important;
  color: #c0c6d1;
  line-height: 1.68;
}

.dmw-smtp-cta .dmw-mail-button {
  margin-top: 29px;
}

@media (max-width: 1020px) {
  .dmw-smtp-strip__grid,
  .dmw-smtp-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dmw-smtp-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dmw-smtp-plan:last-child {
    grid-column: 1 / -1;
    min-height: 460px;
  }

  .dmw-smtp-process__step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .dmw-auth-board,
  .dmw-smtp-hero-grid,
  .dmw-smtp-included {
    grid-template-columns: 1fr;
  }

  .dmw-auth-board::before,
  .dmw-auth-packet {
    display: none;
  }

  .dmw-mail-careflow {
    grid-template-columns: 1fr;
  }

  .dmw-route-card {
    max-width: 690px;
  }
}

@media (max-width: 700px) {
  .dmw-mail-shell {
    width: min(100% - 28px, 1180px);
  }

  .dmw-channel-grid,
  .dmw-smtp-plans,
  .dmw-smtp-feature-grid,
  .dmw-smtp-use-grid,
  .dmw-smtp-process,
  .dmw-smtp-strip__grid {
    grid-template-columns: 1fr;
  }

  .dmw-smtp-plan:last-child {
    grid-column: auto;
  }

  .dmw-smtp-hero {
    padding-top: 132px;
  }

  .dmw-smtp-hero h1 {
    font-size: clamp(2.65rem, 13.4vw, 3.45rem);
    text-wrap: wrap;
  }

  .dmw-mail-section-title,
  .dmw-smtp-heading h2,
  .dmw-smtp-cta h2 {
    font-size: clamp(1.95rem, 9.6vw, 2.65rem);
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  .dmw-smtp-hero__actions {
    flex-direction: column;
  }

  .dmw-smtp-hero__actions .dmw-mail-button {
    width: 100%;
  }

  .dmw-route-card {
    min-height: 360px;
    padding: 23px 14px;
  }

  .dmw-route {
    gap: 7px;
    margin-top: 74px;
  }

  .dmw-route__icon {
    width: 54px;
    height: 54px;
  }

  .dmw-route__node strong {
    font-size: 0.72rem;
  }

  .dmw-route__node small {
    font-size: 0.62rem;
  }

  .dmw-route::before {
    top: 29px;
  }

  .dmw-route__pulse {
    top: 96px;
  }

  .dmw-route-card__status {
    margin-top: 58px;
  }

  .dmw-smtp-strip__grid {
    transform: translateY(-20px);
    margin-bottom: -20px;
  }

  .dmw-smtp-ip-note {
    grid-template-columns: auto 1fr;
  }

  .dmw-smtp-ip-note a {
    grid-column: 1 / -1;
  }

  .dmw-smtp-process__step:not(:last-child)::after {
    display: none;
  }

  .dmw-auth-card__top {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dmw-auth-packet,
  .dmw-route__pulse {
    animation: none;
  }

  .dmw-mail-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dmw-auth-card,
  .dmw-smtp-plan,
  .dmw-mail-button {
    transition: none;
  }
}
