@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --abyss: #0A192F;
    --abyss-mid: #0d2240;
    --abyss-deep: #060f1e;
    --gold: #D4AF37;
    --gold-dim: rgba(212,175,55,0.4);
    --gold-glow: rgba(212,175,55,0.12);
    --white: #E6E6E6;
    --white-dim: rgba(230,230,230,0.6);
    --white-faint: rgba(230,230,230,0.15);
    --grid-line: rgba(212,175,55,0.06);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--abyss);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease;
  }

  /* タッチデバイスではカーソルを非表示・ネイティブカーソルを復元 */
  @media (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }

  /* Grid background */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── LOADING ── */
  #loading {
    position: fixed;
    inset: 0;
    background: var(--abyss-deep);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    overflow: hidden;
  }
  #loading.hidden { opacity: 0; visibility: hidden; }

  .loading-abyss-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 55% at 50% 38%, rgba(13,34,64,0.5) 0%, transparent 70%),
      linear-gradient(180deg, transparent 35%, rgba(2,5,10,0.7) 100%);
    pointer-events: none;
  }

  .loading-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .loading-bubble {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(200, 220, 255, 0.07);
    border: 1px solid rgba(200, 220, 255, 0.22);
    animation: loading-bubble-rise linear forwards;
    opacity: 0;
  }

  @keyframes loading-bubble-rise {
    0%   { transform: translateY(0) translateX(0);   opacity: 0; }
    8%   { opacity: 1; }
    85%  { opacity: 0.4; }
    100% { transform: translateY(-105vh) translateX(10px); opacity: 0; }
  }

  .loading-logo {
    position: relative;
    z-index: 1;
    width: clamp(400px, 55vw, 800px);
    animation: riseFromAbyss 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }

  @keyframes riseFromAbyss {
    0% {
      opacity: 0;
      transform: translateY(130px);
      filter: blur(22px) brightness(0.12) drop-shadow(0 0 0px rgba(212,175,55,0));
    }
    22% {
      opacity: 0.25;
      filter: blur(12px) brightness(0.35) drop-shadow(0 0 12px rgba(212,175,55,0.1));
    }
    58% {
      opacity: 0.75;
      transform: translateY(18px);
      filter: blur(4px) brightness(0.75) drop-shadow(0 0 28px rgba(212,175,55,0.3));
    }
    80% {
      opacity: 1;
      transform: translateY(-7px);
      filter: blur(0) brightness(1.08) drop-shadow(0 0 55px rgba(212,175,55,0.55));
    }
    100% {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0) brightness(1) drop-shadow(0 0 36px rgba(212,175,55,0.38));
    }
  }

  @media (max-width: 768px) {
    .loading-logo { width: 70vw; }
  }

  /* Structure overlay */
  #structure-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,15,30,0.95);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
  #structure-overlay.active { display: flex; }
  .overlay-grid {
    background-image:
      linear-gradient(rgba(212,175,55,0.2) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,175,55,0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    position: absolute;
    inset: 0;
  }
  .overlay-content {
    position: relative;
    text-align: center;
  }
  .overlay-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .overlay-data {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--gold-dim);
    letter-spacing: 2px;
    line-height: 2;
  }
  .overlay-close {
    position: absolute;
    top: 2rem; right: 2rem;
    color: var(--gold-dim);
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
  }
  .overlay-close:hover { color: var(--gold); }

  /* ── SECTIONS ── */
  section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
  }

  /* ── HERO ── */
  #hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .hero-ocean {
    position: absolute;
    inset: 0;
    background: url('hero-ocean.png') center / cover no-repeat;
    animation: depthShift 8s ease-in-out infinite alternate;
  }
  .hero-ocean::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,15,30,0.15) 0%, rgba(6,15,30,0.5) 100%);
  }

  @keyframes depthShift {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.05) translateY(-20px); }
  }

  /* Light rays */
  .light-rays {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .ray {
    position: absolute;
    top: -10%;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, rgba(212,175,55,0.3) 0%, rgba(212,175,55,0.05) 60%, transparent 100%);
    transform-origin: top center;
    animation: raySwing 6s ease-in-out infinite alternate;
  }
  .ray:nth-child(1) { left: 35%; transform: rotate(-8deg); animation-delay: 0s; }
  .ray:nth-child(2) { left: 45%; transform: rotate(-3deg); animation-delay: 0.5s; width: 3px; opacity: 0.8; }
  .ray:nth-child(3) { left: 52%; transform: rotate(2deg); animation-delay: 1s; }
  .ray:nth-child(4) { left: 60%; transform: rotate(7deg); animation-delay: 1.5s; width: 1px; opacity: 0.5; }

  @keyframes raySwing {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
  }

  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
  }

  .hero-logo-wrap {
    width: clamp(400px, 55vw, 800px);
    animation: heroReveal 2.5s ease 0.3s forwards;
    opacity: 0;
    filter: drop-shadow(0 0 40px rgba(212,175,55,0.3));
  }
  .hero-logo-svg {
    width: 100%;
    height: auto;
    display: block;
  }

  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: heroReveal 2s ease 1.5s forwards;
    opacity: 0;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold-dim));
    animation: scrollPulse 2s ease-in-out infinite;
  }
  .scroll-text {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--gold-dim);
    text-transform: uppercase;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* ── STATEMENT ── */
  #statement {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--abyss) 0%, var(--abyss-deep) 100%);
    position: relative;
  }

  .statement-content {
    max-width: 840px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .statement-eyebrow {
    font-size: 10px;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .statement-eyebrow.visible { opacity: 1; transform: translateY(0); }

  .statement-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
  }
  .statement-headline.visible { opacity: 1; transform: translateY(0); }
  .statement-headline em {
    color: var(--gold);
    font-style: italic;
  }

  .statement-body {
    font-size: 15px;
    line-height: 2;
    color: var(--white-dim);
    letter-spacing: 0.3px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
  }
  .statement-body.visible { opacity: 1; transform: translateY(0); }
  .statement-body p + p { margin-top: 1.5rem; }

  /* ── TARGET ── */
  #target {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .target-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.04) 0%, transparent 70%);
  }
  .target-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .target-content.visible { opacity: 1; transform: translateY(0); }
  .target-label {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .target-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--white);
  }
  .target-headline .anata {
    display: block;
    color: var(--gold);
    font-style: italic;
    font-size: clamp(36px, 5vw, 60px);
    margin-top: 0.5rem;
  }

  /* ── METHODOLOGY ── */
  #methodology {
    min-height: 100vh;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--abyss-deep) 0%, var(--abyss) 100%);
  }

  .method-inner {
    max-width: 1200px;
    width: 100%;
  }

  .method-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .method-header.visible { opacity: 1; transform: translateY(0); }

  .method-eyebrow {
    font-size: 10px;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .method-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--white);
  }

  /* State transition diagram */
  .transition-map {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    align-items: center;
    gap: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
  }
  .transition-map.visible { opacity: 1; transform: translateY(0); }

  .state-node {
    border: 1px solid var(--gold-dim);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
  }
  .state-node::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .state-node:hover::before { opacity: 1; }

  .state-label {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .state-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .state-desc {
    font-size: 12px;
    color: var(--white-dim);
    line-height: 1.8;
    letter-spacing: 0.3px;
    text-align: left;
  }
  .state-formula {
    font-size: 11px;
    color: var(--gold-dim);
    font-family: 'DM Sans', monospace;
    margin-top: 1rem;
    letter-spacing: 1px;
  }

  .arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  .arrow-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    position: relative;
  }
  .arrow-line::after {
    content: '›';
    position: absolute;
    right: -4px;
    top: -10px;
    color: var(--gold);
    font-size: 18px;
  }
  .arrow-label {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gold-dim);
    text-transform: uppercase;
    text-align: center;
  }

  /* ── SERVICES ── */
  #services {
    min-height: 100vh;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-inner { max-width: 1000px; width: 100%; }

  .services-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .services-header.visible { opacity: 1; transform: translateY(0); }

  .services-eyebrow {
    font-size: 10px;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .services-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gold-dim);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
  }
  .services-grid.visible { opacity: 1; transform: translateY(0); }

  .service-item {
    background: var(--abyss);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
  }
  .service-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .service-item:hover { background: var(--abyss-mid); }
  .service-item:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(212,175,55,0.7);
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .service-sub {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .service-desc {
    font-size: 13px;
    color: var(--white-dim);
    line-height: 1.9;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(6,15,30,0.9) 0%, transparent 100%);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
  }
  .nav-logo .at { color: var(--gold); font-style: italic; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--white-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid var(--gold-dim);
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 4px;
    text-decoration: none;
  }
  .footer-logo .at { color: var(--gold); font-style: italic; }
  .footer-tagline {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold-dim);
    text-transform: uppercase;
  }
  .footer-copy {
    font-size: 11px;
    color: rgba(230,230,230,0.3);
    letter-spacing: 2px;
    margin-top: 2rem;
  }

  /* ── HERO BUBBLES ── */
  .hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }
  .hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 220, 255, 0.06);
    border: 1px solid rgba(200, 220, 255, 0.18);
    animation: bubble-rise linear infinite;
    opacity: 0;
  }
  @keyframes bubble-rise {
    0%   { transform: translateY(0) translateX(0);    opacity: 0; }
    8%   { opacity: 1; }
    50%  { transform: translateY(-50vh) translateX(12px); }
    92%  { opacity: 0.5; }
    100% { transform: translateY(-105vh) translateX(-8px); opacity: 0; }
  }

  /* ── PARTICLES ── */
  .particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: var(--gold);
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0;
  }
  @keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
  }

  /* ── ABOUT ── */
  #about {
    min-height: 80vh;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--abyss) 0%, var(--abyss-deep) 100%);
  }
  .about-inner {
    max-width: 840px;
    width: 100%;
    text-align: center;
  }
  .about-eyebrow {
    font-size: 10px;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }
  .about-eyebrow.visible { opacity: 1; transform: translateY(0); }
  .about-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--white-dim);
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
  }
  .about-body.visible { opacity: 1; transform: translateY(0); }
  .about-body em { color: var(--gold); font-style: italic; }
  .about-sign {
    margin-top: 3rem;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold-dim);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
  }
  .about-sign.visible { opacity: 1; transform: translateY(0); }

  /* ── COMPANY ── */
  #company {
    min-height: auto;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--abyss-deep) 0%, var(--abyss) 100%);
  }
  .company-inner {
    max-width: 760px;
    width: 100%;
  }
  .company-eyebrow {
    font-size: 10px;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }
  .company-eyebrow.visible { opacity: 1; transform: translateY(0); }
  .company-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.1s;
  }
  .company-title.visible { opacity: 1; transform: translateY(0); }
  .company-table {
    border-top: 1px solid var(--gold-dim);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
  }
  .company-table.visible { opacity: 1; transform: translateY(0); }
  .company-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.08);
    align-items: start;
  }
  .company-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    padding-top: 2px;
    white-space: nowrap;
  }
  .company-value {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.8;
    letter-spacing: 0.5px;
  }

  /* Mobile hero: hidden by default */
  .hero-mobile { display: none; }
  .sp-only { display: none; }

  @media (max-width: 768px) {
    .sp-only { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .transition-map { grid-template-columns: 1fr; }
    .arrow-box { display: none; }
    .nav-links { display: none; }

    .company-row { grid-template-columns: 90px 1fr; gap: 0.75rem; }

    /* Hide desktop hero logo — all selectors covered */
    .hero-content,
    #hero-desktop-logo,
    .hero-logo-wrap,
    .hero-logo-svg { display: none !important; }

    /* Show mobile hero */
    .hero-mobile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    .hero-symbol-img {
      width: 70vw;
      height: auto;
      display: block;
    }

    .hero-mobile-name,
    .hero-mobile-sub { display: none; }
  }
