
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════
   HERO
══════════════════════════════ */
.dev-hero {
    min-height: 100vh;
    background: #0d0d0b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 0;
}

#dev-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
}

.dev-hero-glow-r {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(232, 80, 26, 0.16) 0%, transparent 65%);
    pointer-events: none;
}

.dev-hero-glow-l {
    position: absolute;
    bottom: 40px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(232, 80, 26, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* grid lines texture */
.dev-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.dev-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 90px;
}

/* ── LEFT COPY ── */
.dev-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    margin-bottom: 26px;
    animation: devFadeUp 0.7s ease both;
}

.dev-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent2);
    border-radius: 50%;
    animation: devBlink 1.8s ease-in-out infinite;
}

@keyframes devBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

@keyframes devFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dev-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    animation: devFadeUp 0.7s 0.1s ease both;
}

.dev-hero h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.36);
}

.dev-hero h1 .h1-orange {
    color: var(--accent2);
}

.dev-hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.42);
    max-width: 420px;
    line-height: 1.75;
    margin-bottom: 36px;
    animation: devFadeUp 0.7s 0.2s ease both;
}

.dev-hero-search-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    animation: devFadeUp 0.7s 0.28s ease both;
}

.dev-hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    padding: 13px 20px;
    width: 320px;
    transition: border-color 0.2s, background 0.2s;
}

.dev-hero-search:focus-within {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
}

.dev-hero-search input {
    background: none;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #fff;
    width: 100%;
}

.dev-hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.dev-hero-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: devFadeUp 0.7s 0.36s ease both;
}

.dev-hero-stat {
    flex: 1;
}

.dev-hero-stat+.dev-hero-stat {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.dev-hero-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.dev-hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

/* ── RIGHT: DEVICE SHOWCASE ── */
.dev-hero-right {
    position: relative;
    height: 500px;
    animation: devFadeUp 0.7s 0.15s ease both;
}

/* centre orbit ring */
.dev-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.dev-orbit::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    animation: devSpin 28s linear infinite;
}

.dev-orbit::after {
    content: '';
    position: absolute;
    inset: 70px;
    border-radius: 50%;
    border: 1px solid rgba(232, 80, 26, 0.1);
}

@keyframes devSpin {
    to {
        transform: rotate(360deg);
    }
}

/* device mockup cards */
.dmc {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: dmcFloat var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes dmcFloat {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg))
    }

    50% {
        transform: translateY(-10px) rotate(var(--rot, 0deg))
    }
}

.dmc:hover {
    transform: scale(1.05) translateY(-4px) !important;
    transition: transform 0.3s;
    cursor: default;
}

.dmc--iphone {
    top: 3%;
    left: 10%;
    --rot: -3deg;
    --delay: 0.3s;
    --dur: 5.6s;
}

.dmc--pixel {
    top: 18%;
    right: 3%;
    --rot: 3deg;
    --delay: 0.6s;
    --dur: 6.1s;
}

.dmc--galaxy {
    top: 40%;
    left: 2%;
    --rot: -5deg;
    --delay: 0.9s;
    --dur: 5.9s;
}

.dmc--ipad {
    top: 55%;
    right: 0%;
    --rot: 5deg;
    --delay: 1.2s;
    --dur: 6.4s;
}

.dmc--mac {
    top: 79%;
    left: 30%;
    --rot: 8deg;
    --delay: 1.5s;
    --dur: 5s;
}

.dmc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dmc-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.dmc-model {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 2px;
}

.dmc-badge {
    display: inline-block;
    margin-top: 4px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #4ade80;
}

/* wave bottom */
.dev-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.dev-hero-wave svg {
    display: block;
    width: 100%;
}


/* ── 1200px: nudge cards apart before they collide ── */
@media (max-width: 1200px) {
  .dev-hero-right {
    height: 520px;
  }

  .dmc--iphone { top: 2%;  left: 2%; --rot: -3deg }
  .dmc--pixel  { top: 15%; right: 0%; --rot: 3deg; }
  .dmc--galaxy { top: 38%; left: 0%; --rot: 5deg }
  .dmc--ipad   { top: 52%; right: 0%; --rot: -5deg }
  .dmc--mac    { top: 72%; left: 8%; --rot: 6deg }
}

/* ── 1080px: stack more vertically, shrink cards ── */
@media (max-width: 1080px) {
  .dev-hero-inner {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 32px;
  }

  .dev-hero-right {
    height: 560px;
  }

  .dmc {
    padding: 10px 12px;
    gap: 9px;
  }

  .dmc-icon {
    width: 34px;
    height: 34px;
  }

  .dmc--iphone { top: 2%;  left: 0%; }
  .dmc--pixel  { top: 20%; right: 0%; }
  .dmc--galaxy { top: 38%; left: 2%; }
  .dmc--ipad   { top: 56%; right: 0%; }
  .dmc--mac    { top: 74%; left: 5%; }
}

/* ── 900px: go single column, keep cards as a neat 2-col pill row ── */
@media (max-width: 900px) {
  .dev-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }

  .dev-orbit { display: none; }

  .dev-hero-right {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .dmc {
    position: static;
    animation: none !important;
    transform: none !important;
    width: calc(50% - 5px);
  }

  .dmc:hover {
    transform: translateY(-3px) !important;
    transition: transform 0.2s;
  }
}

/* ── 600px: full width cards ── */
@media (max-width: 600px) {
  .dev-hero { padding: 90px 20px 0; }

  .dmc { width: 100%; }

  .dev-hero-search { width: 100%; }

  .dev-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .dev-hero-stat + .dev-hero-stat {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 400px) {
  .dev-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .dev-hero h1 {
    font-size: 36px;
    line-height: 44px;
  }
}


/* ══════════════════════════════
   BRAND STRIP
══════════════════════════════ */
.brand-strip {
    background: #fbfbfb;
    padding: 40px 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-strip-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-strip-label {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    margin-right: 40px;
    flex-shrink: 0;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0.55;
    transition: opacity 0.2s;
    cursor: default;
}

.brand-logo-item:hover {
    opacity: 1;
}

.brand-logo-item span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--fg);
}

/* ══════════════════════════════
   DEVICE LIST + FILTERS
══════════════════════════════ */
.devices-section {
    padding: 70px 40px 100px;
    background: var(--bg);
}

.devices-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.devices-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}
.section-header {
    align-items: flex-start !important;
}
.section-title{
    text-align: left !important;
}

@media (max-width: 900px) {
    .section-header{
        align-items: center !important;
    }      
    .section-title{
        text-align: center !important;
    }
    .section-subtitle{
        max-width: 500px !important;
    }
}

/* filter bar */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-group-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-right: 4px;
}

.filter-btn {
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.18s;
}

.filter-btn:hover {
    border-color: #111;
    color: #111;
}

.filter-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.filter-divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 6px;
    flex-shrink: 0;
}

/* search + count row */
.devices-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.devices-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-pill);
    padding: 9px 16px;
    width: 280px;
}

.devices-search:focus-within {
    border-color: #111;
}

.devices-search input {
    background: none;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #111;
    width: 100%;
}

.devices-search input::placeholder {
    color: #ccc;
}

.devices-count {
    font-size: 0.82rem;
    color: var(--muted);
}

.devices-count strong {
    color: #111;
}

/* grid */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.device-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.4s ease both;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.09);
}

.device-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.device-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f5f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-compat-badge {
    font-size: 0.62rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
}

.badge-full {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.badge-partial {
    background: rgba(2, 121, 255, 0.12);
    color: #0279FF;
}

.device-brand {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.device-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin-bottom: 2px;
}

.device-model {
    font-size: 0.72rem;
    color: var(--muted);
}

.device-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.device-tag {
    font-size: 0.62rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f5f5f2;
    color: #555;
}

.device-tag--esim {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.device-card-footer {
    border-top: 1px solid #f5f5f2;
    padding-top: 12px;
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.device-card-footer svg {
    flex-shrink: 0;
}

/* no results */
.devices-empty {
    display: none;
    text-align: center;
    padding: 80px 20px;
    grid-column: 1/-1;
}

.devices-empty.show {
    display: block;
}

.devices-empty h3 {
    font-weight: 600;
    margin-bottom: 8px;
}

.devices-empty p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ══════════════════════════════
   HOW TO CHECK + CTA
══════════════════════════════ */
.check-section {
    padding: 80px 40px;
    background: #fff;
}

.check-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.check-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.check-left p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.check-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.check-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-step-text h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.check-step-text p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* iOS steps visual */
.check-right {
    background: var(--bg);
    border-radius: 24px;
    padding: 32px 28px;
}

.check-visual-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.check-path {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.check-path-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 4px;
}

.check-path-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-left: auto;
    flex-shrink: 0;
}

.check-path-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f5f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-path-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #111;
}

.check-connector {
    width: 1px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    margin-left: 27px;
}

.check-path-item.active {
    border-color: var(--accent2);
    background: rgba(0, 195, 142, 0.04);
}

.check-path-item.active .check-path-label {
    color: var(--accent2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .dev-hero {
        padding: 100px 24px 0;
        min-height: auto;
    }

    .dev-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }

    .dev-hero-right {
        display: none;
    }

    .dev-hero h1 {
        font-size: clamp(2.4rem, 8vw, 3.4rem);
    }

    .brand-strip {
        padding: 32px 24px;
    }

    .devices-section {
        padding: 50px 24px 80px;
    }

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

    .check-section {
        padding: 60px 24px;
    }

    .check-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}



@media (max-width: 540px) {
    .devices-grid {
        grid-template-columns: 1fr;
    }
}

/* ── More brands dropdown ── */
.brand-more-wrap {
  position: relative;
}

.brand-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-more-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.brand-more-btn.open svg {
  transform: rotate(180deg);
}

.brand-more-btn.active-inside {
  background: #111;
  color: #fff;
  border-color: #111;
}

.brand-more-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 9999 !important;
  min-width: 260px;
}

.brand-more-panel.open {
  display: block;
  animation: panelIn 0.18s ease both;
}

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

.brand-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.brand-more-grid .filter-btn {
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════
   PAGINATION
══════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-btn:hover:not(:disabled) {
  border-color: #111;
  color: #111;
}

.page-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.page-btn--prev,
.page-btn--next {
  padding: 0 16px;
}

.page-ellipsis {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0 4px;
  user-select: none;
}

/* hide info label on desktop */
.page-btn--info {
  display: none;
}

/* mobile: collapse to prev / X of Y / next */
@media (max-width: 540px) {
  .page-btn--num,
  .page-ellipsis {
    display: none;
  }

  .page-btn--info {
    display: flex;
    font-size: 0.82rem;
    color: var(--muted);
    padding: 0 8px;
    cursor: default;
    border: none;
    background: none;
    min-width: auto;
  }

  .page-btn--info:hover {
    border: none;
    color: var(--muted);
  }
}

/* ── Brand colours & stagger extractions ── */
.brand-name--samsung { color: #1428A0; }
.brand-name--google { color: #4285F4; }
.brand-name--microsoft { color: #737373; }
.brand-name--oneplus { color: #F5010C; }
.brand-name--oppo { color: #1D4ED8; }
.filter-bar.reveal { transition-delay: 0.08s; }
.devices-meta.reveal { transition-delay: 0.14s; }
.check-right.reveal { transition-delay: 0.12s; }
.devices-empty a { color: #E8501A; }
.check-path-item.active .check-path-icon { background: rgba(0,195,142,0.1); }

