/* Extracted from ip-tools-standalone-redesign.php style block 1 */
:root {
      --navy: #071426;
      --navy-2: #0b1d36;
      --navy-3: #112a48;
      --cyan: #00d4ff;
      --green: #16c784;
      --text: #e8f4ff;
      --muted: rgba(232,244,255,.7);
      --faint: rgba(232,244,255,.48);
      --border: rgba(148,190,228,.18);
      --panel: rgba(13,31,60,.82);
      --panel-2: rgba(7,20,38,.92);
      --shadow: 0 26px 70px rgba(0,0,0,.28);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Manrope", "Inter", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 0%, rgba(0,212,255,.13), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(22,199,132,.1), transparent 28%),
        linear-gradient(180deg, #06111f 0%, #071426 42%, #06111f 100%);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,.045) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
      z-index: -1;
    }

    a { color: inherit; }
    img { max-width: 100%; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.96);
      color: #0d1f3c;
      border-bottom: 1px solid rgba(10,31,61,.08);
      box-shadow: 0 8px 24px rgba(5,16,32,.08);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: min(1360px, calc(100% - 48px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo img { height: 42px; width: auto; display: block; }
    .nav { display: flex; align-items: center; gap: 8px; }
    .nav-item { position: relative; }
    .nav-item > a,
    .login-btn,
    .mobile-toggle {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      border: 0;
      background: transparent;
      color: #304056;
      font-weight: 800;
      font-size: 13px;
      line-height: 1;
      padding: 14px 10px;
      cursor: pointer;
    }

    .nav-item > a:hover { color: #0097ca; }
    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 235px;
      padding: 12px;
      background: #fff;
      border: 1px solid #dbe6f3;
      border-radius: 14px;
      box-shadow: 0 22px 54px rgba(8,24,48,.16);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .18s ease;
    }

    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border-radius: 10px;
      color: #304056;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .dropdown a:hover {
      color: #008fc4;
      background: #eef8fc;
    }

    .dropdown.mega {
      left: auto;
      right: -120px;
      width: min(760px, calc(100vw - 40px));
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      padding: 18px;
    }

    .dropdown-col h4 {
      margin: 0 0 10px;
      color: #071426;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .dropdown-col a {
      padding: 9px 8px;
    }

    .dropdown-footer {
      grid-column: 1 / -1;
      padding-top: 12px;
      border-top: 1px solid #e5edf6;
    }

    .unavail {
      display: inline-flex;
      align-items: center;
      color: #7c8796;
      opacity: .72;
      text-decoration: line-through;
      cursor: not-allowed;
      font-weight: 700;
      font-size: 13px;
      padding: 9px 8px;
    }
    .dropdown-col a.nav-link-muted { color: #64748b; opacity: .48; }
    .dropdown-col a.nav-link-muted:hover { color: #008fc4; opacity: .78; }
    .mobile-panel a.mobile-link-muted { color: #8a96a8; }
    .mobile-flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.12); flex-shrink: 0; }

    .login-btn {
      background: #00d4ff;
      color: #04111f;
      border-radius: 10px;
      padding: 13px 18px;
      text-transform: uppercase;
      letter-spacing: .3px;
    }

    .mobile-toggle { display: none; font-size: 20px; }
    .mobile-panel {
      display: none;
      padding: 0 24px 22px;
      background: #fff;
      border-top: 1px solid #e5edf6;
    }

    .mobile-panel a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 0;
      color: #304056;
      text-decoration: none;
      font-weight: 700;
      border-bottom: 1px solid #edf2f8;
    }

    .mobile-group-title {
      display: block;
      color: #0097ca;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin: 18px 0 4px;
    }

    .mobile-sep {
      height: 1px;
      background: #e5edf6;
      margin: 8px 0;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 78px 0 46px;
      border-bottom: 1px solid var(--border);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 16px;
      border: 1px solid rgba(0,212,255,.3);
      border-radius: 999px;
      background: rgba(0,212,255,.09);
      color: var(--cyan);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.7px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    h1 {
      margin: 0 0 18px;
      color: #fff;
      font-size: clamp(42px, 7vw, 78px);
      line-height: .98;
      letter-spacing: 0;
      font-weight: 900;
    }

    .hero p {
      margin: 0;
      max-width: 730px;
      color: rgba(232,244,255,.82);
      font-size: 18px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 14px 22px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 900;
      border: 1px solid transparent;
      transition: .2s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #00d4ff, #16c784);
      color: #04111f;
      box-shadow: 0 18px 36px rgba(0,212,255,.24);
    }

    .btn-secondary {
      color: #e8f4ff;
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.18);
    }

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

    .hero-card {
      position: relative;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: linear-gradient(155deg, rgba(17,39,66,.9), rgba(7,20,38,.96));
      box-shadow: var(--shadow);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(0,212,255,.18), transparent);
      height: 3px;
      border-radius: 22px 22px 0 0;
    }

    .network-orb {
      width: 112px;
      height: 112px;
      margin: 0 auto 22px;
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #00d4ff, #16c784);
      color: #051020;
      font-size: 48px;
      box-shadow: 0 24px 60px rgba(0,212,255,.28);
    }

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

    .mini-stat {
      padding: 14px;
      border-radius: 14px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(148,190,228,.14);
    }

    .mini-stat strong {
      display: block;
      color: var(--cyan);
      font-size: 22px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .section {
      padding: 42px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
    }

    .section-title {
      margin: 0;
      color: #fff;
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 900;
      line-height: 1.15;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-title i { color: var(--cyan); }
    .section-subtitle {
      margin: 8px 0 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .panel {
      background: linear-gradient(155deg, var(--panel), var(--panel-2));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      padding: 18px;
    }

    .info-item,
    .resource-card,
    .tool-card {
      background: rgba(2,12,24,.38);
      border: 1px solid rgba(148,190,228,.15);
      border-radius: 14px;
      padding: 18px;
    }

    .info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .info-item--wide {
      grid-column: span 2;
    }

    .info-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(0,212,255,.12);
      color: var(--cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border: 1px solid rgba(0,212,255,.18);
    }

    .info-content h3,
    .resource-card h3,
    .tool-card h3 {
      margin: 0 0 6px;
      color: var(--faint);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 900;
    }

    .info-content p {
      margin: 0;
      color: #fff;
      font-size: 17px;
      font-weight: 800;
      word-break: break-word;
    }

    .speedtest-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .speedtest-link {
      display: inline-flex;
      padding: 7px 11px;
      border-radius: 999px;
      color: #04111f;
      background: var(--cyan);
      text-decoration: none;
      font-size: 12px;
      font-weight: 900;
    }

    .tool-shell {
      padding: 22px;
    }

    .test-form,
    .whois-form fieldset {
      display: grid;
      gap: 14px;
      border: 0;
      padding: 0;
      margin: 0;
    }

    .input-row,
    .whois-input-group {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 260px auto;
      gap: 12px;
    }

    .network-select-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
    }

    input,
    select {
      width: 100%;
      min-height: 52px;
      border: 1px solid rgba(148,190,228,.2);
      border-radius: 12px;
      background: rgba(2,12,24,.58);
      color: #fff;
      font-family: "Manrope", sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 0 16px;
      outline: none;
    }

    select {
      cursor: pointer;
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, #00d4ff 50%), linear-gradient(135deg, #00d4ff 50%, transparent 50%);
      background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      padding-right: 40px;
    }

    option {
      color: #0d1f3c;
      background: #fff;
    }

    input::placeholder { color: rgba(232,244,255,.45); }
    input:focus,
    select:focus {
      border-color: rgba(0,212,255,.55);
      box-shadow: 0 0 0 4px rgba(0,212,255,.1);
    }

    button,
    .search-btn,
    .run-test-btn {
      min-height: 52px;
      border: 0;
      border-radius: 12px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #00d4ff, #16c784);
      color: #04111f;
      font-family: "Manrope", sans-serif;
      font-size: 14px;
      font-weight: 900;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }

    .results-section {
      padding: 22px;
    }

    #response,
    .whois-result-box pre {
      margin: 0;
      padding: 18px;
      border-radius: 14px;
      background: #020b16;
      border: 1px solid rgba(0,212,255,.16);
      color: #d9f7ff;
      font-family: "JetBrains Mono", Consolas, monospace;
      font-size: 13px;
      line-height: 1.65;
      white-space: pre-wrap;
      overflow-x: auto;
    }

    .results-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .results-title {
      margin: 0;
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .results-badge {
      color: #04111f;
      background: var(--green);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
      padding: 18px;
    }

    .resource-card {
      text-align: center;
      color: #fff;
      text-decoration: none;
      transition: .2s ease;
    }

    .resource-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,212,255,.42);
      background: rgba(0,212,255,.08);
    }

    .resource-card i {
      display: inline-flex;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      border-radius: 14px;
      background: rgba(0,212,255,.12);
      color: var(--cyan);
      border: 1px solid rgba(0,212,255,.18);
      font-size: 20px;
    }

    .resource-card span {
      display: block;
      font-weight: 900;
      font-size: 13px;
    }

    .management-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 18px;
      padding: 22px;
      align-items: center;
    }

    .management-grid ul {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 10px;
      color: var(--muted);
    }

    .management-grid li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-weight: 700;
    }

    .management-grid li i { color: var(--green); margin-top: 4px; }
    .datacenter-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(148,190,228,.16);
      background: rgba(0,0,0,.2);
    }

    .quick-links-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .tool-card {
      color: #fff;
      text-decoration: none;
      display: flex;
      gap: 12px;
      align-items: center;
      font-weight: 900;
      transition: .2s ease;
    }

    .tool-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0,212,255,.42);
    }

    .tool-card i {
      color: var(--cyan);
      font-size: 20px;
    }

    .partners-band {
      margin-top: 46px;
      padding: 34px 0;
      background: #eef4fb;
      border-top: 1px solid #dbe6f3;
      border-bottom: 1px solid #dbe6f3;
      overflow: hidden;
    }

    .partners-track {
      display: flex;
      gap: 38px;
      width: max-content;
      animation: scrollPartners 34s linear infinite;
    }

    .partner-item {
      width: 128px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 8px;
      padding: 8px 16px;
      box-shadow: 0 8px 18px rgba(10,31,61,.06);
    }

    .partner-item img {
      max-width: 100%;
      max-height: 34px;
      object-fit: contain;
    }

    @keyframes scrollPartners {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .site-footer {
      padding: 54px 0 34px;
      background: #071426;
      border-top: 1px solid rgba(148,190,228,.12);
    }

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

    .footer-brand p,
    .footer-col a,
    .footer-bottom {
      color: rgba(210,229,247,.7);
    }

    .footer-brand p {
      margin: 16px 0 0;
      line-height: 1.8;
      font-size: 14px;
    }

    .footer-col h3 {
      margin: 0 0 14px;
      color: var(--cyan);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      font-weight: 900;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 11px;
    }

    .footer-col a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }

    .footer-col a:hover { color: var(--cyan); }
    .footer-ded-row {
      margin-top: 42px;
      padding-top: 34px;
      border-top: 1px solid rgba(148,190,228,.13);
    }

    .footer-ded-row h3 {
      margin: 0 0 20px;
      color: var(--cyan);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      font-weight: 900;
    }

    .footer-ded-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
    }

    .footer-ded-sub {
      display: block;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding-bottom: 10px;
      margin-bottom: 12px;
      border-bottom: 1px solid rgba(148,190,228,.13);
    }

    .footer-ded-sub--specialty { margin-top: 16px; }
    .footer-ded-grid ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .footer-ded-grid a {
      color: rgba(210,229,247,.7);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }

    .footer-ded-grid a:hover { color: var(--cyan); }
    .footer-ded-grid a.footer-link-muted { color: rgba(210,229,247,.48); }
    .footer-ded-grid a.footer-link-muted:hover { color: rgba(0,212,255,.82); }
    .footer-all-servers-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 28px 0 0;
      padding: 9px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(0,212,255,.18), rgba(0,145,214,.12));
      border: 1px solid rgba(0,212,255,.35);
      color: var(--cyan) !important;
      font-size: 12px !important;
      font-weight: 900 !important;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 12px 28px rgba(0,212,255,.08);
      transition: transform .2s, border-color .2s, background .2s, color .2s;
    }
    .footer-all-servers-cta i {
      font-size: 11px;
      transition: transform .2s;
    }
    .footer-all-servers-cta:hover {
      transform: translateY(-1px);
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      border-color: var(--cyan);
      color: #061426 !important;
    }
    .footer-all-servers-cta:hover i { transform: translateX(3px); }
    .footer-all-servers-cta--mobile { display: none; }
    .footer-ded-grid .unavail {
      color: rgba(210,229,247,.42);
      padding: 0;
      font-size: 14px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid rgba(148,190,228,.13);
      font-size: 13px;
    }

    .footer-bottom a {
      color: rgba(210,229,247,.7);
      text-decoration: none;
      margin-left: 16px;
    }

    .footer-bottom a:hover { color: var(--cyan); }

    @media (max-width: 1260px) {
      .nav { display: none; }
      .mobile-toggle { display: inline-flex; }
      .mobile-panel.is-open { display: grid; }
      .hero-grid,
      .management-grid {
        grid-template-columns: 1fr;
      }
      .hero-card { max-width: 520px; }
      .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .resources-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-ded-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 24px, 1180px); }
      .header-inner { width: min(100% - 24px, 1360px); min-height: 66px; }
      .logo img { height: 34px; }
      .hero { padding-top: 46px; }
      .hero-actions,
      .quick-links-grid,
      .input-row,
      .network-select-row,
      .whois-input-group,
      .info-grid,
      .resources-grid,
      .footer-grid,
      .footer-ded-grid {
        grid-template-columns: 1fr;
      }
      .info-item--wide {
        grid-column: auto;
      }
      .hero-actions { display: grid; }
      .section-head { display: block; }
      .mini-stats { grid-template-columns: 1fr; }
      .footer-all-servers-cta { width: 100%; justify-content: center; margin: 18px 0 2px; }
      .footer-all-servers-cta--desktop { display: none; }
      .footer-all-servers-cta--mobile { display: flex; }
      .footer-col ul,
      .footer-ded-grid ul { gap: 0; }
      .footer-col a,
      .footer-ded-grid a,
      .footer-ded-grid .unavail {
        min-height: 36px;
        display: flex;
        align-items: center;
        padding: 6px 0;
      }
      .footer-ded-sub { margin-top: 4px; }
      .footer-ded-sub--specialty { margin-top: 18px; }
      .footer-bottom a { margin-left: 0; margin-right: 12px; }
    }

